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