Skip to content
This repository was archived by the owner on Oct 16, 2024. It is now read-only.
This repository was archived by the owner on Oct 16, 2024. It is now read-only.

Nested @FreeBuilder Bar in a separate file doesn't generate get getBarBuilder #28

@aabdagic

Description

@aabdagic

For

@FreeBuilder
public interface Foo {
  Bar getBar();
  static class Builder extends Foo_Builder() {}
  @FreeBuilder
  public interface Bar {
   String getBlah();
   static class Builder extends Foo_Bar_Builder() {}
  }
}

this works fine:
java new Foo.Builder().getBarBuilder()

But for:

@FreeBuilder
public interface Foo {
  Bar getBar();
  static class Builder extends Foo_Builder() { }
}
@FreeBuilder
public interface Bar {
 String getBlah();
 static class Builder extends Bar_Builder() {}
}

java new Foo.Builder().getBarBuilder() doesn't exist.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions