1 | String getErrorCode(){↵ | | 1 | String getFooterURL() {↵
|
2 | return getPropertyAsString(ERRORCODE);↵ | | 2 | return getPropertyAsString(REPORT_PAGE_FOOTER);↵
|
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 | */↵ | | |
|
10 | public void setErrorCode(String code){↵ | | 5 | public void setFooterURL(String url) {↵
|
11 | setProperty(ERRORCODE,code);↵ | | 6 | setProperty(↵
|
12 | }↵ | | |
|
13 | ↵ | | |
|
14 | /**↵ | | |
|
15 | * return the comma separated string for the filter↵ | | |
|
16 | */↵ | | 7 | REPORT_PAGE_FOOTER,url);↵
|
| | | 8 | }↵
|
| | | 9 | ↵
|
17 | public String getFilterString(){↵ | | 10 | public String getIntroduction() {↵
|
18 | return getPropertyAsString(FILTER);↵ | | 11 | return getPropertyAsString(REPORT_PAGE_INTRO);↵
|
19 | } | | 12 | }
|