blob: d4975bffbf13b172cb6c3ede7fe694739b3f4c82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
class BuilderChainAndFluent {
private final int yes;
@java.lang.SuppressWarnings("all")
BuilderChainAndFluent(final int yes) {
this.yes = yes;
}
@java.lang.SuppressWarnings("all")
public static class BuilderChainAndFluentBuilder {
private int yes;
@java.lang.SuppressWarnings("all")
BuilderChainAndFluentBuilder() {
}
@java.lang.SuppressWarnings("all")
public void setYes(final int yes) {
this.yes = yes;
}
@java.lang.SuppressWarnings("all")
public BuilderChainAndFluent build() {
return new BuilderChainAndFluent(yes);
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "BuilderChainAndFluent.BuilderChainAndFluentBuilder(yes=" + this.yes + ")";
}
}
@java.lang.SuppressWarnings("all")
public static BuilderChainAndFluentBuilder builder() {
return new BuilderChainAndFluentBuilder();
}
}
|