1 | void setValue(String value) {↵ | | 1 | void setName(String name) {↵
|
2 | this.setProperty(VALUE, value);↵ | | 2 | this.setProperty(HNAME, name);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * get the domain for this object.↵ | | 5 | * Get the value for this object.↵
|
6 | */↵ | | 6 | */↵
|
7 | public synchronized String getDomain() {↵ | | 7 | public synchronized String getValue() {↵
|
8 | return getPropertyAsString(DOMAIN);↵ | | 8 | return getPropertyAsString(VALUE);↵
|
9 | }↵ | | 9 | }↵
|
|
10 | /**↵ | | 10 | /**↵
|
11 | * set the domain for this object.↵ | | 11 | * Set the value for this object.↵
|
12 | */↵ | | 12 | */↵
|
13 | public synchronized void setDomain(String domain) {↵ | | 13 | public synchronized void setValue(String value) {↵
|
14 | setProperty(DOMAIN, domain);↵ | | 14 | this.setProperty(VALUE, value);↵
|
15 | } | | 15 | }
|