blob: e2f83a7f45ed8bd5e1222ea70e6f61290c0e014c [file] [log] [blame]
public class Builder {
private int[] i;
private int j;
public Builder setI(int... i) {
this.i = i;
return this;
}
public Test createTest() {
return new Test(j, i);
}
public Builder setJ(int j) {
this.j = j;
return this;
}
}