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
| package tbDataModel;
| /**Ö±Ïß¶ÔÏó*/
| public class Line {
|
| int x1;
| int y1;
| int x2;
| int y2;
|
| String lenght;//Á½µãµÄ³¤¶È
|
| public int getX1() {
| return x1;
| }
| public int getY1() {
| return y1;
| }
| public int getX2() {
| return x2;
| }
| public int getY2() {
| return y2;
| }
| public void setX1(int x1) {
| this.x1 = x1;
| }
| public void setY1(int y1) {
| this.y1 = y1;
| }
| public void setX2(int x2) {
| this.x2 = x2;
| }
| public void setY2(int y2) {
| this.y2 = y2;
| }
| public String getLenght() {
| return lenght;
| }
| public void setLenght(String lenght) {
| this.lenght = lenght;
| }
|
| }
|
|