1 | void setMessageChoice(String choice) {↵ | | 1 | void setRefName(String refName) {↵
|
2 | setProperty(MESSAGE_CHOICE, choice);↵ | | 2 | setProperty(↵
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * return the source of the message↵ | | |
|
6 | * ↵ | | |
|
7 | */↵ | | 3 | REFNAME, refName);↵
|
| | | 4 | }↵
|
|
8 | public String getMessageChoice() {↵ | | 5 | public String getRefName() {↵
|
9 | return getPropertyAsString(MESSAGE_CHOICE);↵ | | 6 | return getPropertyAsString(↵
|
10 | }↵ | | |
|
|
11 | /**↵ | | |
|
12 | * set the input file for the publisher↵ | | |
|
13 | * ↵ | | |
|
14 | * @param file↵ | | |
|
15 | */↵ | | |
|
16 | ↵ | | 7 | REFNAME);↵
|
| | | 8 | }↵
|
| | | 9 | ↵
|
17 | public void setInputFile(String file) {↵ | | 10 | public void setDefaultValue(String val) {↵
|
18 | setProperty(INPUT_FILE, file);↵ | | 11 | setProperty(↵
|
19 | }↵ | | |
|
|
20 | /**↵ | | |
|
21 | * return the path of the input file↵ | | |
|
22 | * ↵ | | |
|
23 | */↵ | | 12 | DEFAULT, val);↵
|
| | | 13 | }↵
|
|
24 | public String getInputFile() {↵ | | 14 | public String getDefaultValue() {↵
|
25 | return getPropertyAsString(INPUT_FILE);↵ | | 15 | return getPropertyAsString(DEFAULT);↵
|
26 | | | 16 |
|