1 | String getErrorCode(){↵ | | 1 | String getName() {↵
|
2 | return getPropertyAsString(ERRORCODE);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
4 | ↵ | | |
|
5 | /**↵ | | |
|
6 | * provide an unique error code for when the test↵ | | |
|
7 | * does not pass the assert test.↵ | | |
|
8 | * @param code↵ | | |
|
9 | ↵ | | 3 | HNAME);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * Set the name for this object.↵
|
10 | */↵ | | 7 | */↵
|
11 | public void setErrorCode(String code){↵ | | 8 | public synchronized void setName(String name) {↵
|
12 | setProperty(ERRORCODE,code);↵ | | 9 | this.setProperty(↵
|
13 | }↵ | | |
|
14 | ↵ | | |
|
15 | ↵ | | 10 | HNAME, name);↵
|
| | | 11 | }↵
|
|
16 | /**↵ | | 12 | /**↵
|
17 | * return the comma separated string for the filter↵ | | 13 | * Get the ↵
|
18 | ↵ | | 14 | value for this object.↵
|
19 | */↵ | | 15 | */↵
|
20 | public String getFilterString(){↵ | | 16 | public synchronized String getValue() {↵
|
21 | return getPropertyAsString(FILTER);↵ | | 17 | return getPropertyAsString(↵
|
22 | }↵ | | |
|
23 | ↵ | | |
|
24 | ↵ | | 18 | VALUE);↵
|
| | | 19 | }↵
|
|
25 | /**↵ | | 20 | /**↵
|
26 | * set the filter string in comman separated format↵ | | 21 | * Set the ↵
|
27 | * @param text↵ | | |
|
28 | ↵ | | 22 | value for this object.↵
|
29 | */↵ | | 23 | */↵
|
30 | public void setFilterString(String text){↵ | | 24 | public ↵
|
31 | setProperty(FILTER,text);↵ | | |
|
32 | | | 25 | synchronized void setValue(String value) {↵
|
| | | 26 | this.setProperty(VALUE, value);↵
|
| | | 27 |
|