forked from scaforchio/BST
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArco.java
More file actions
67 lines (53 loc) · 1.17 KB
/
Copy pathArco.java
File metadata and controls
67 lines (53 loc) · 1.17 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
import java.awt.*;
public class Arco {
int xStart;
int xEnd;
int yStart;
int yEnd;
Color colore;
String label;
public Arco(int xStart, int xEnd, int yStart, int yEnd, Color colore,String label) {
this.xStart = xStart;
this.xEnd = xEnd;
this.yStart = yStart;
this.yEnd = yEnd;
this.colore = colore;
this.label=label;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public Color getColore() {
return colore;
}
public void setColore(Color colore) {
this.colore = colore;
}
public int getxStart() {
return xStart;
}
public void setxStart(int xStart) {
this.xStart = xStart;
}
public int getxEnd() {
return xEnd;
}
public void setxEnd(int xEnd) {
this.xEnd = xEnd;
}
public int getyStart() {
return yStart;
}
public void setyStart(int yStart) {
this.yStart = yStart;
}
public int getyEnd() {
return yEnd;
}
public void setyEnd(int yEnd) {
this.yEnd = yEnd;
}
}