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