1 | void setValue(String newValue) {↵ | | 1 | void setOpcode(String newOpcode) {↵
|
2 | setProperty(new StringProperty(VALUE, newValue));↵ | | 2 | setProperty(new StringProperty(OPCODE, newOpcode));↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Gets the value of the Argument object.↵ | | 5 | * Gets the opcode of the Argument object.↵
|
6 | * ↵ | | 6 | * ↵
|
7 | * @return the attribute's value↵ | | 7 | * @return the attribute's value↵
|
8 | */↵ | | 8 | */↵
|
9 | public String getValue() {↵ | | 9 | public String getOpcode() {↵
|
10 | return getPropertyAsString(VALUE);↵ | | 10 | return getPropertyAsString(OPCODE);↵
|
11 | }↵ | | 11 | }↵
|
|
12 | /**↵ | | 12 | /**↵
|
13 | * Sets the Meta Data attribute of the Argument.↵ | | 13 | * Sets the Meta Data attribute of the Argument.↵
|
14 | * ↵ | | 14 | * ↵
|
15 | * @param newMetaData↵ | | 15 | * @param newMetaData↵
|
16 | * the new metadata↵ | | 16 | * the new metadata↵
|
17 | */↵ | | 17 | */↵
|
18 | public void setMetaData(String newMetaData) {↵ | | 18 | public void setMetaData(String newMetaData) {↵
|
19 | setProperty(new StringProperty(METADATA, newMetaData));↵ | | 19 | setProperty(new StringProperty(METADATA, newMetaData));↵
|
20 | }↵ | | 20 | }↵
|
|
21 | /**↵ | | 21 | /**↵
|
22 | * Gets the Meta Data attribute of the Argument.↵ | | 22 | * Gets the Meta Data attribute of the Argument.↵
|
23 | * ↵ | | 23 | * ↵
|
24 | * @return the MetaData value↵ | | 24 | * @return the MetaData value↵
|
25 | */↵ | | 25 | */↵
|
26 | public String getMetaData() {↵ | | 26 | public String getMetaData() {↵
|
27 | return getPropertyAsString(METADATA);↵ | | 27 | return getPropertyAsString(METADATA);↵
|
28 | } | | 28 | }
|