1 | void setName(String newName) {↵ | | 1 | void set↵
|
2 | setProperty(new StringProperty(ARG_NAME, newName));↵ | | |
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * Get the name of the Argument.↵ | | |
|
6 | * ↵ | | |
|
7 | * @return the attribute's name↵ | | |
|
8 | */↵ | | |
|
9 | public String getName() {↵ | | |
|
10 | return getPropertyAsString(ARG_NAME);↵ | | |
|
11 | }↵ | | |
|
|
12 | /**↵ | | |
|
13 | * Sets the value of the Argument.↵ | | |
|
14 | * ↵ | | |
|
15 | * @param newValue↵ | | |
|
16 | * the new value↵ | | |
|
17 | */↵ | | |
|
18 | ↵ | | 2 | ConnTimeOut(String connto) {↵
|
| | | 3 | setProperty(new StringProperty(CONNTO, connto));↵
|
| | | 4 | }↵
|
|
| | | 5 | public String getConnTimeOut() {↵
|
| | | 6 | return getPropertyAsString(CONNTO);↵
|
| | | 7 | }↵
|
| | | 8 | ↵
|
19 | public void setValue(String newValue) {↵ | | 9 | public void setSecure(String ↵
|
20 | ↵ | | 10 | sec) {↵
|
21 | setProperty(new StringProperty(VALUE, newValue));↵ | | 11 | setProperty(new StringProperty(SECURE, sec));↵
|
22 | | | 12 |
|