1 | String getCSS() {↵ | | 1 | String getErrorCode(){↵
|
2 | return getPropertyAsString(REPORT_PAGE_CSS);↵ | | 2 | return getPropertyAsString(ERRORCODE);↵
|
3 | }↵ | | 3 | }↵
|
4 | ↵ | | 4 | ↵
|
| | | 5 | /**↵
|
| | | 6 | * provide an unique error code for when the test↵
|
| | | 7 | * does not pass the assert test.↵
|
| | | 8 | * @param code↵
|
| | | 9 | */↵
|
5 | public void setCSS(String css) {↵ | | 10 | public void setErrorCode(String code){↵
|
6 | setProperty(REPORT_PAGE_CSS,css);↵ | | 11 | setProperty(ERRORCODE,code);↵
|
7 | }↵ | | 12 | }↵
|
8 | ↵ | | 13 | ↵
|
| | | 14 | /**↵
|
| | | 15 | * return the comma separated string for the filter↵
|
| | | 16 | */↵
|
9 | public String getHeaderURL() {↵ | | 17 | public String getFilterString(){↵
|
10 | return getPropertyAsString(REPORT_PAGE_HEADER);↵ | | 18 | return getPropertyAsString(FILTER);↵
|
11 | } | | 19 | }
|