blob: 8a26b3f2405d6bb71bd599eedab7b480662b1db7 (
plain) (
blame)
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
|
public class Button
{
private String label;
private String color;
private boolean state;
public Button(String label, String color)
{
this.label = label;
this.color = color;
this.state = false;
}
public String toString()
{
return String.format("<button %s with color %s and state %s>",
label, color, state);
}
// To be honest these getters and setters are really redundant in this case
public String getLabel()
{
return label;
}
public String getColor()
{
return color;
}
public void setLabel(String label)
{
this.label = label;
}
public void setColor(String color)
{
this.color = color;
}
public void dePress()
{
this.state = true;
}
public void unDepress()
{
this.state = false;
}
}
|