import java.util.List;
public class SuperBuilderWithGenerics3 {
public static class Parent {
private final String str;
@java.lang.SuppressWarnings("all")
public static abstract class ParentBuilder, B extends SuperBuilderWithGenerics3.Parent.ParentBuilder> {
@java.lang.SuppressWarnings("all")
private String str;
/**
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
public B str(final String str) {
this.str = str;
return self();
}
@java.lang.SuppressWarnings("all")
protected abstract B self();
@java.lang.SuppressWarnings("all")
public abstract C build();
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "SuperBuilderWithGenerics3.Parent.ParentBuilder(str=" + this.str + ")";
}
}
@java.lang.SuppressWarnings("all")
private static final class ParentBuilderImpl extends SuperBuilderWithGenerics3.Parent.ParentBuilder, SuperBuilderWithGenerics3.Parent.ParentBuilderImpl> {
@java.lang.SuppressWarnings("all")
private ParentBuilderImpl() {
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
protected SuperBuilderWithGenerics3.Parent.ParentBuilderImpl self() {
return this;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public SuperBuilderWithGenerics3.Parent build() {
return new SuperBuilderWithGenerics3.Parent(this);
}
}
@java.lang.SuppressWarnings("all")
protected Parent(final SuperBuilderWithGenerics3.Parent.ParentBuilder b) {
this.str = b.str;
}
@java.lang.SuppressWarnings("all")
public static SuperBuilderWithGenerics3.Parent.ParentBuilder builder() {
return new SuperBuilderWithGenerics3.Parent.ParentBuilderImpl();
}
}
public static class Child extends Parent {
public static class SomeInnerStaticClass {
}
double field3;
@java.lang.SuppressWarnings("all")
public static abstract class ChildBuilder> extends Parent.ParentBuilder {
@java.lang.SuppressWarnings("all")
private double field3;
/**
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
public B field3(final double field3) {
this.field3 = field3;
return self();
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
protected abstract B self();
@java.lang.Override
@java.lang.SuppressWarnings("all")
public abstract C build();
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "SuperBuilderWithGenerics3.Child.ChildBuilder(super=" + super.toString() + ", field3=" + this.field3 + ")";
}
}
@java.lang.SuppressWarnings("all")
private static final class ChildBuilderImpl extends SuperBuilderWithGenerics3.Child.ChildBuilder {
@java.lang.SuppressWarnings("all")
private ChildBuilderImpl() {
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
protected SuperBuilderWithGenerics3.Child.ChildBuilderImpl self() {
return this;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public SuperBuilderWithGenerics3.Child build() {
return new SuperBuilderWithGenerics3.Child(this);
}
}
@java.lang.SuppressWarnings("all")
protected Child(final SuperBuilderWithGenerics3.Child.ChildBuilder, ?> b) {
super(b);
this.field3 = b.field3;
}
@java.lang.SuppressWarnings("all")
public static SuperBuilderWithGenerics3.Child.ChildBuilder, ?> builder() {
return new SuperBuilderWithGenerics3.Child.ChildBuilderImpl();
}
}
}