1 | String getConfigChoice() {↵ | | 1 | String getDefaultValue() {↵
|
2 | return getPropertyAsString(CONFIG_CHOICE);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * set the source of the message↵ | | |
|
6 | * ↵ | | |
|
7 | * @param choice↵ | | |
|
8 | */↵ | | 3 | DEFAULT);↵
|
| | | 4 | }↵
|
|
9 | public void setMessageChoice(String choice) {↵ | | 5 | public void setTemplate(String template) {↵
|
10 | setProperty(MESSAGE_CHOICE, choice);↵ | | 6 | setProperty(↵
|
11 | }↵ | | |
|
|
12 | /**↵ | | |
|
13 | * return the source of the message↵ | | |
|
14 | * ↵ | | |
|
15 | */↵ | | 7 | TEMPLATE, template);↵
|
| | | 8 | }↵
|
|
16 | public String getMessageChoice() {↵ | | 9 | public String getTemplate() {↵
|
17 | return getPropertyAsString(MESSAGE_CHOICE);↵ | | 10 | return getPropertyAsString(TEMPLATE);↵
|
18 | | | 11 |
|