1 | void setOpcode(String newOpcode) {↵ | | 1 | void set↵
|
2 | setProperty(new StringProperty(OPCODE, newOpcode));↵ | | |
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * Gets the opcode of the Argument object.↵ | | |
|
6 | * ↵ | | |
|
7 | * @return the attribute's value↵ | | |
|
8 | */↵ | | |
|
9 | public String getOpcode() {↵ | | |
|
10 | return getPropertyAsString(OPCODE);↵ | | |
|
11 | }↵ | | |
|
|
12 | /**↵ | | |
|
13 | * Sets the Meta Data attribute of the Argument.↵ | | |
|
14 | * ↵ | | |
|
15 | * @param newMetaData↵ | | |
|
16 | * the new metadata↵ | | |
|
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 setMetaData(String newMetaData) {↵ | | 9 | public void set↵
|
20 | ↵ | | 10 | Secure(String sec) {↵
|
21 | setProperty(new StringProperty(METADATA, newMetaData));↵ | | 11 | setProperty(new StringProperty(SECURE, sec));↵
|
22 | } | | 12 | }
|