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