1 | String getOpcode() {↵ | | 1 | String getMimeType() {↵
|
2 | return getPropertyAsString(OPCODE);↵ | | 2 | return getPropertyAsString(MIMETYPE);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Sets the Meta Data attribute of the Argument.↵ | | 5 | * Set the path of the File.↵
|
6 | * ↵ | | 6 | *↵
|
7 | * @param newMetaData↵ | | 7 | * @param newPath↵
|
8 | * the new metadata↵ | | 8 | * the new path↵
|
9 | */↵ | | 9 | */↵
|
10 | public void setMetaData(String newMetaData) {↵ | | 10 | public void setPath(String newPath) {↵
|
11 | setProperty(new StringProperty(METADATA, newMetaData));↵ | | 11 | setProperty(new StringProperty(FILEPATH, newPath));↵
|
12 | }↵ | | 12 | }↵
|
|
13 | /**↵ | | 13 | /**↵
|
14 | * Gets the Meta Data attribute of the Argument.↵ | | 14 | * Get the path of the File.↵
|
15 | * ↵ | | 15 | *↵
|
16 | * @return the MetaData value↵ | | 16 | * @return the file's path↵
|
17 | */↵ | | 17 | */↵
|
18 | public String getMetaData() {↵ | | 18 | public String getPath() {↵
|
19 | return getPropertyAsString(METADATA);↵ | | 19 | return getPropertyAsString(FILEPATH);↵
|
20 | } | | 20 | }
|