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