1 | String getFilename() {↵ | | 1 | String getName() {↵
|
2 | return getPropertyAsString(FILENAME);↵ | | 2 | return getPropertyAsString(HNAME);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public↵ | | 4 | /**↵
|
| | | 5 | * Set the name for this object.↵
|
| | | 6 | */↵
|
5 | void setFilename(String newFilename) {↵ | | 7 | public synchronized void setName(String name) {↵
|
6 | this.setProperty(FILENAME, newFilename);↵ | | 8 | this.setProperty(HNAME, name);↵
|
7 | }↵ | | 9 | }↵
|
|
8 | public↵ | | 10 | /**↵
|
| | | 11 | * Get the value for this object.↵
|
| | | 12 | */↵
|
9 | String getScript() {↵ | | 13 | public synchronized String getValue() {↵
|
10 | return this.getPropertyAsString(SCRIPT);↵ | | 14 | return getPropertyAsString(VALUE);↵
|
11 | }↵ | | 15 | }↵
|
|
12 | public↵ | | 16 | /**↵
|
| | | 17 | * Set the value for this object.↵
|
| | | 18 | */↵
|
13 | void setScript(String newScript) {↵ | | 19 | public synchronized void setValue(String value) {↵
|
14 | this.setProperty(SCRIPT, newScript);↵ | | 20 | this.setProperty(VALUE, value);↵
|
15 | } | | 21 | }
|