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