blob: 7395f964d7f9f7d665108e2d7df9855722a1b94d [file] [log] [blame]
public class Builder {
private int i = 2;
public Builder setI(int i) {
this.i = i;
return this;
}
public Test createTest() {
return new Test(i);
}
}