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
| package tbDataModel;
|
| import java.awt.Color;
|
| /**ÁÙʱµÄ¾ØÐÎΧÀ¸¶ÔÏó*/
| public class JuxingLinshi {
| String name;
| Color color;
| int[] xy;
| int[] wh;
|
| public String getName() {
| return name;
| }
| public Color getColor() {
| return color;
| }
| public int[] getXy() {
| return xy;
| }
| public int[] getWh() {
| return wh;
| }
| public void setName(String name) {
| this.name = name;
| }
| public void setColor(Color color) {
| this.color = color;
| }
| public void setXy(int[] xy) {
| this.xy = xy;
| }
| public void setWh(int[] wh) {
| this.wh = wh;
| }
|
| }
|
|