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 | }↵
|
20 | ↵ | | 12 | ↵
|
21 | /**↵ | | 13 | /**↵
|
22 | * set the filter string in comman separated format↵ | | 14 | * The X data labels should be either the filename, date or some↵
|
| | | 15 | * other series of values↵
|
23 | * @param text↵ | | 16 | * @param label↵
|
24 | */↵ | | 17 | */↵
|
25 | public void setFilterString(String text){↵ | | 18 | public void set↵
|
26 | ↵ | | 19 | XLabel(String label) {↵
|
27 | setProperty(FILTER,text);↵ | | 20 | setProperty(REPORT_CHART_X_LABEL,label);↵
|
28 | } | | 21 | }
|