-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPoints.java
More file actions
64 lines (54 loc) · 891 Bytes
/
Points.java
File metadata and controls
64 lines (54 loc) · 891 Bytes
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
import java.awt.Color;
public class Points
{
private int posX;
private int posY;
private int theSize;
private Color pColor;
private String forme;
public Points (int posX,int posY, Color col,String forme,int size)
{
this.posX=posX;
this.posY=posY;
this.pColor=col;
this.forme=forme;
this.theSize=size;
}
public void setForme(String forme)
{
this.forme=forme;
}
public String getForme()
{
return forme;
}
public void setPosXY(int posX,int posY)
{
this.posX=posX;
this.posY=posY;
}
public int getPosX()
{
return posX;
}
public int getPosY()
{
return posY;
}
public void setSize(int size)
{
this.theSize=size;
}
public int getSize()
{
return theSize;
}
public void setColor(Color col)
{
this.pColor=col;
}
public Color getColor()
{
return this.pColor;
}
}