1 | String getConfigChoice() {↵ | | 1 | String getPassword() {↵
|
2 | return getPropertyAsString(CONFIG_CHOICE);↵ | | 2 | return getPropertyAsString(C↵
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * set the source of the message↵ | | |
|
6 | * ↵ | | |
|
7 | * @param choice↵ | | |
|
8 | */↵ | | 3 | onfigTestElement.PASSWORD);↵
|
| | | 4 | }↵
|
|
9 | public void setMessageChoice(String choice) {↵ | | 5 | public void setServer(String newServer) {↵
|
10 | setProperty(MESSAGE_CHOICE, choice);↵ | | 6 | this.setProperty(↵
|
11 | }↵ | | |
|
|
12 | /**↵ | | |
|
13 | * return the source of the message↵ | | |
|
14 | * ↵ | | |
|
15 | */↵ | | 7 | SERVER, newServer);↵
|
| | | 8 | }↵
|
|
16 | public String getMessageChoice() {↵ | | 9 | public String getServer() {↵
|
17 | return getPropertyAsString(MESSAGE_CHOICE);↵ | | 10 | return getPropertyAsString(SERVER);↵
|
18 | | | 11 |
|