-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPropertyProxy.java
84 lines (71 loc) · 1.56 KB
/
PropertyProxy.java
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Property proxy - a bit unusual
package structural.proxy;
import java.util.Objects;
// Property class set up to fully represent a property
class Property<T>
{
private T value;
public Property(T value) {
this.value = value;
}
public T getValue() {
return value;
}
public void setValue(T value) {
// logging
this.value = value;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Property<?> property = (Property<?>) o;
return value.equals(property.value);
}
@Override
public int hashCode() {
return value!= null ? value.hashCode() : 0;
}
}
//class Creature
//{
// private int agility;
//
// public Creature()
// {
//
// }
//
// public Creature(int agility) {
//// agility = 123; // not recorded anywhere; agility itself has no getter/setter
// }
//
// public int getAgility() {
// return agility;
// }
//
// public void setAgility(int agility) {
// this.agility = agility;
// }
//}
class Creature
{
private Property<Integer> agility = new Property<>(0);
public void setAgility(int value)
{
agility.setValue(value);
}
public int getAgility()
{
return agility.getValue();
}
}
class PropertyProxyDemo
{
public static void main(String[] args)
{
Creature creature = new Creature();
creature.setAgility(3);
System.out.println(creature.getAgility());
}
}