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