-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPosition.java
54 lines (42 loc) · 873 Bytes
/
Position.java
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import java.io.Serializable;
public class Position implements Serializable {
/**
* x坐标
*/
private int x;
/**
* y坐标
*/
private int y;
/**
* 这个点是否是另外两个点的转折点
*/
private boolean flag;
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
public boolean isFlag() {
return flag;
}
public void setFlag(boolean flag) {
this.flag = flag;
}
@Override
public String toString() {
return "Position{" + "x=" + x + ", y=" + y + ", flag=" + flag + '}';
}
public Position(int x, int y, boolean flag) {
this.x = x;
this.y = y;
this.flag = flag;
}
}