1 | void setConnTimeOut(String connto) {↵ | | 1 | void set↵
|
2 | setProperty(new StringProperty(CONNTO, connto));↵ | | |
|
3 | }↵ | | |
|
|
4 | public String getConnTimeOut() {↵ | | |
|
5 | return getPropertyAsString(CONNTO);↵ | | |
|
6 | }↵ | | |
|
7 | ↵ | | |
|
8 | ↵ | | 2 | Opcode(String newOpcode) {↵
|
| | | 3 | setProperty(new StringProperty(OPCODE, newOpcode));↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * Gets the opcode of the Argument object.↵
|
| | | 7 | * ↵
|
| | | 8 | * @return the attribute's value↵
|
| | | 9 | */↵
|
| | | 10 | public String getOpcode() {↵
|
| | | 11 | return getPropertyAsString(OPCODE);↵
|
| | | 12 | }↵
|
|
| | | 13 | /**↵
|
| | | 14 | * Sets the Meta Data attribute of the Argument.↵
|
| | | 15 | * ↵
|
| | | 16 | * @param newMetaData↵
|
| | | 17 | * the new metadata↵
|
| | | 18 | */↵
|
9 | public void setSecure(String sec) {↵ | | 19 | public void set↵
|
10 | ↵ | | 20 | MetaData(String newMetaData) {↵
|
11 | setProperty(new StringProperty(SECURE, sec));↵ | | 21 | setProperty(new StringProperty(METADATA, newMetaData));↵
|
12 | | | 22 |
|