1 | String getParameters() {↵ | | 1 | String getName() {↵
|
2 | return this.getPropertyAsString(PARAMETERS);↵ | | 2 | return getPropertyAsString(HNAME);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void setParameters↵ | | 4 | /**↵
|
| | | 5 | * Set the name for this object.↵
|
| | | 6 | */↵
|
5 | (String newScript) {↵ | | 7 | public synchronized void setName(String name) {↵
|
6 | this.setProperty(PARAMETERS, newScript);↵ | | 8 | this.setProperty(↵
|
7 | }↵ | | |
|
|
8 | public String getScriptLanguag↵ | | 9 | HNAME, name);↵
|
| | | 10 | }↵
|
|
| | | 11 | /**↵
|
| | | 12 | * Get the value for this object.↵
|
| | | 13 | */↵
|
9 | e() {↵ | | 14 | public synchronized String getValue() {↵
|
10 | return this.getPropertyAsString(LANGUAGE);↵ | | 15 | return getPropertyAsString(VALUE);↵
|
11 | }↵ | | 16 | }↵
|
|
12 | public void setScriptLanguag↵ | | 17 | /**↵
|
| | | 18 | * Set the value for this object.↵
|
| | | 19 | */↵
|
13 | e(String lang) {↵ | | 20 | public synchronized void setValue(String value) {↵
|
14 | this.setProperty(LANGUAGE, lang);↵ | | 21 | this.setProperty(VALUE, value);↵
|
15 | } | | 22 | }
|