1 | void setRandomPath(String path) {↵ | | 1 | void set↵
|
2 | setProperty(RANDOM_PATH, path);↵ | | |
|
3 | ↵ | | 2 | Classname(String classname)↵
|
| | | 3 | {↵
|
| | | 4 | setProperty(CLASSNAME, classname);↵
|
4 | }↵ | | 5 | }↵
|
|
5 | /**↵ | | 6 | /**↵
|
6 | * return the random path for messages↵ | | 7 | * Gets the ↵
|
7 | * ↵ | | |
|
8 | ↵ | | 8 | Classname attribute of the JavaConfig object↵
|
| | | 9 | *↵
|
| | | 10 | * @return the Classname value↵
|
9 | */↵ | | 11 | */↵
|
10 | public String getRandomPath() {↵ | | 12 | public String get↵
|
11 | return getPropertyAsString(RANDOM_PATH);↵ | | |
|
12 | }↵ | | |
|
|
13 | ↵ | | 13 | Classname()↵
|
| | | 14 | {↵
|
| | | 15 | return getPropertyAsString(CLASSNAME);↵
|
| | | 16 | }↵
|
| | | 17 | ↵
|
14 | /**↵ | | 18 | /**↵
|
15 | * set the text for the message↵ | | 19 | * Set the ↵
|
16 | * ↵ | | |
|
17 | * @param message↵ | | |
|
18 | ↵ | | 20 | string label used to create an instance of the↵
|
| | | 21 | * test with the string constructor.↵
|
| | | 22 | * @param constr↵
|
19 | */↵ | | 23 | */↵
|
20 | public void setTextMessage(String message) {↵ | | 24 | public void set↵
|
21 | setProperty(TEXT_MSG, message);↵ | | |
|
22 | ↵ | | 25 | ConstructorString(String constr)↵
|
| | | 26 | {↵
|
| | | 27 | setProperty(CONSTRUCTORSTRING,constr);↵
|
23 | } | | 28 | }
|