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