1 | String getValue() {↵ | | 1 | String getParameters() {↵
|
2 | return getPropertyAsString(VALUE);↵ | | 2 | return this.getPropertyAsString(PARAMETERS);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | ↵
|
5 | * set the value for this object.↵ | | |
|
6 | */↵ | | |
|
7 | public synchronized void setValue(String value) {↵ | | |
|
8 | this.setProperty(VALUE, value);↵ | | |
|
9 | }↵ | | |
|
|
10 | /**↵ | | |
|
11 | * get the domain for this object.↵ | | |
|
12 | */↵ | | |
|
13 | public synchronized String getDomain↵ | | 5 | public void setParameters(String newScript) {↵
|
| | | 6 | this.setProperty(PARAMETERS, newScript);↵
|
| | | 7 | }↵
|
|
14 | () {↵ | | 8 | public String getScriptLanguage() {↵
|
15 | return getPropertyAsString(DOMAIN);↵ | | 9 | return this.getPropertyAsString(LANGUAGE);↵
|
16 | } | | 10 | }
|