1 | String getErrorCode(){↵ | | 1 | String getYAxis() {↵
|
2 | return getPropertyAsString(ERRORCODE);↵ | | 2 | return getPropertyAsString(REPORT_CHART_Y_AXIS);↵
|
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 setYAxis(String scale) {↵
|
11 | setProperty(ERRORCODE,code);↵ | | 6 | setProperty(↵
|
12 | }↵ | | |
|
13 | ↵ | | |
|
14 | /**↵ | | |
|
15 | * return the comma separated string for the filter↵ | | |
|
16 | */↵ | | 7 | REPORT_CHART_Y_AXIS,scale);↵
|
| | | 8 | }↵
|
|
17 | public String getFilterString(){↵ | | 9 | public String getXLabel() {↵
|
18 | return getPropertyAsString(FILTER);↵ | | 10 | return getPropertyAsString(REPORT_CHART_X_LABEL);↵
|
19 | } | | 11 | }
|