1 | void setFilename(String newFilename) {↵ | | 1 | void setClassname(String ↵
|
2 | this.↵ | | 2 | classname)↵
|
| | | 3 | {↵
|
3 | setProperty(FILENAME, newFilename);↵ | | 4 | setProperty(CLASSNAME, classname);↵
|
4 | }↵ | | 5 | }↵
|
|
5 | ↵ | | 6 | /**↵
|
| | | 7 | * Gets the Classname attribute of the JavaConfig object↵
|
| | | 8 | *↵
|
| | | 9 | * @return the Classname value↵
|
| | | 10 | */↵
|
6 | public String getFilename() {↵ | | 11 | public String getClassname()↵
|
7 | ↵ | | |
|
| | | 12 | {↵
|
8 | return getPropertyAsString(FILENAME);↵ | | 13 | return getPropertyAsString(CLASSNAME);↵
|
9 | }↵ | | |
|
|
10 | public void setRequestData(String newRequestData) {↵ | | |
|
11 | this.setProperty(REQUEST, newRequestData);↵ | | |
|
12 | ↵ | | 14 | }↵
|
| | | 15 | ↵
|
| | | 16 | /**↵
|
| | | 17 | * Set the string label used to create an instance of the↵
|
| | | 18 | * test with the string constructor.↵
|
| | | 19 | * @param constr↵
|
| | | 20 | */↵
|
| | | 21 | public void setConstructorString(String constr)↵
|
| | | 22 | {↵
|
| | | 23 | setProperty(CONSTRUCTORSTRING,constr);↵
|
13 | } | | 24 | }
|