corrige builde
This commit is contained in:
parent
4a156236f6
commit
989519ac8f
2 changed files with 17 additions and 0 deletions
17
src/main/java/PointBuilder.java
Normal file
17
src/main/java/PointBuilder.java
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
public class PointBuilder {
|
||||||
|
private int x;
|
||||||
|
private int y;
|
||||||
|
|
||||||
|
|
||||||
|
public PointBuilder setx(int x) {
|
||||||
|
this.x = x;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public PointBuilder sety(int y) {
|
||||||
|
this.y = y;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
BIN
target/classes/PointBuilder.class
Normal file
BIN
target/classes/PointBuilder.class
Normal file
Binary file not shown.
Loading…
Reference in a new issue