1 | void setParamName(String newParamName) {↵ | | 1 | void setOpcode(String newOpcode) {↵
|
2 | setProperty(new StringProperty(PARAMNAME, newParamName));↵ | | 2 | setProperty(new StringProperty(OPCODE, newOpcode));↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Get the http parameter name of the File.↵ | | 5 | * Gets the opcode of the Argument object.↵
|
6 | *↵ | | 6 | * ↵
|
7 | * @return the http parameter name↵ | | 7 | * @return the attribute's value↵
|
8 | */↵ | | 8 | */↵
|
9 | public String getParamName() {↵ | | 9 | public String getOpcode() {↵
|
10 | return getPropertyAsString(PARAMNAME);↵ | | 10 | return getPropertyAsString(OPCODE);↵
|
11 | }↵ | | 11 | }↵
|
|
12 | /**↵ | | 12 | /**↵
|
13 | * Set the mimetype of the File.↵ | | 13 | * Sets the Meta Data attribute of the Argument.↵
|
14 | *↵ | | 14 | * ↵
|
15 | * @param newMimeType↵ | | 15 | * @param newM↵
|
16 | * ↵ | | 16 | etaData↵
|
17 | the new mimetype↵ | | 17 | * the new metadata↵
|
18 | */↵ | | 18 | */↵
|
19 | public void setMimeType(String newMimeType) {↵ | | 19 | public void setMetaData(String newMetaData) {↵
|
20 | setProperty(new StringProperty(MIMETYPE, newMimeType));↵ | | 20 | setProperty(new StringProperty(METADATA, newMetaData));↵
|
21 | | | 21 |
|