mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
139 lines
3.5 KiB
Java
139 lines
3.5 KiB
Java
// Generated by delombok at Sun Nov 06 10:56:35 CET 2022
|
|
|
|
public class SuperBuilderCustomized {
|
|
|
|
public static class Parent {
|
|
|
|
public static abstract class ParentBuilder<C extends Parent, B extends ParentBuilder<C, B>> {
|
|
@java.lang.SuppressWarnings("all")
|
|
private int field1;
|
|
|
|
public B resetToDefault() {
|
|
field1 = 0;
|
|
return self();
|
|
}
|
|
|
|
@java.lang.SuppressWarnings("all")
|
|
protected abstract B self();
|
|
|
|
@java.lang.SuppressWarnings("all")
|
|
public abstract C build();
|
|
|
|
/**
|
|
* @return {@code this}.
|
|
*/
|
|
@java.lang.SuppressWarnings("all")
|
|
public B field1(final int field1) {
|
|
this.field1 = field1;
|
|
return self();
|
|
}
|
|
|
|
@java.lang.Override
|
|
@java.lang.SuppressWarnings("all")
|
|
public java.lang.String toString() {
|
|
return "SuperBuilderCustomized.Parent.ParentBuilder(field1=" + this.field1 + ")";
|
|
}
|
|
}
|
|
|
|
int field1;
|
|
|
|
|
|
@java.lang.SuppressWarnings("all")
|
|
private static final class ParentBuilderImpl extends SuperBuilderCustomized.Parent.ParentBuilder<SuperBuilderCustomized.Parent, SuperBuilderCustomized.Parent.ParentBuilderImpl> {
|
|
@java.lang.SuppressWarnings("all")
|
|
private ParentBuilderImpl() {
|
|
}
|
|
|
|
@java.lang.Override
|
|
@java.lang.SuppressWarnings("all")
|
|
protected SuperBuilderCustomized.Parent.ParentBuilderImpl self() {
|
|
return this;
|
|
}
|
|
|
|
@java.lang.Override
|
|
@java.lang.SuppressWarnings("all")
|
|
public SuperBuilderCustomized.Parent build() {
|
|
return new SuperBuilderCustomized.Parent(this);
|
|
}
|
|
}
|
|
|
|
@java.lang.SuppressWarnings("all")
|
|
protected Parent(final SuperBuilderCustomized.Parent.ParentBuilder<?, ?> b) {
|
|
this.field1 = b.field1;
|
|
}
|
|
|
|
@java.lang.SuppressWarnings("all")
|
|
public static SuperBuilderCustomized.Parent.ParentBuilder<?, ?> builder() {
|
|
return new SuperBuilderCustomized.Parent.ParentBuilderImpl();
|
|
}
|
|
}
|
|
|
|
|
|
public static class Child extends Parent {
|
|
|
|
private static final class ChildBuilderImpl extends ChildBuilder<Child, ChildBuilderImpl> {
|
|
@Override
|
|
public Child build() {
|
|
this.resetToDefault();
|
|
return new Child(this);
|
|
}
|
|
|
|
@java.lang.SuppressWarnings("all")
|
|
private ChildBuilderImpl() {
|
|
}
|
|
|
|
@java.lang.Override
|
|
@java.lang.SuppressWarnings("all")
|
|
protected SuperBuilderCustomized.Child.ChildBuilderImpl self() {
|
|
return this;
|
|
}
|
|
}
|
|
|
|
double field2;
|
|
|
|
public static ChildBuilder<?, ?> builder() {
|
|
return new ChildBuilderImpl().field2(10.0);
|
|
}
|
|
|
|
|
|
@java.lang.SuppressWarnings("all")
|
|
public static abstract class ChildBuilder<C extends SuperBuilderCustomized.Child, B extends SuperBuilderCustomized.Child.ChildBuilder<C, B>> extends Parent.ParentBuilder<C, B> {
|
|
@java.lang.SuppressWarnings("all")
|
|
private double field2;
|
|
|
|
@java.lang.Override
|
|
@java.lang.SuppressWarnings("all")
|
|
protected abstract B self();
|
|
|
|
@java.lang.Override
|
|
@java.lang.SuppressWarnings("all")
|
|
public abstract C build();
|
|
|
|
/**
|
|
* @return {@code this}.
|
|
*/
|
|
@java.lang.SuppressWarnings("all")
|
|
public B field2(final double field2) {
|
|
this.field2 = field2;
|
|
return self();
|
|
}
|
|
|
|
@java.lang.Override
|
|
@java.lang.SuppressWarnings("all")
|
|
public java.lang.String toString() {
|
|
return "SuperBuilderCustomized.Child.ChildBuilder(super=" + super.toString() + ", field2=" + this.field2 + ")";
|
|
}
|
|
}
|
|
|
|
@java.lang.SuppressWarnings("all")
|
|
protected Child(final SuperBuilderCustomized.Child.ChildBuilder<?, ?> b) {
|
|
super(b);
|
|
this.field2 = b.field2;
|
|
}
|
|
}
|
|
|
|
public static void test() {
|
|
Child x = Child.builder().field2(1.0).field1(5).resetToDefault().build();
|
|
}
|
|
}
|