1 | String getYLabel() {↵ | | 1 | String getErrorCode(){↵
|
2 | return getPropertyAsString(REPORT_CHART_Y_LABEL);↵ | | 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 setYLabel(String label) {↵ | | 10 | public void set↵
|
| | | 11 | ErrorCode(String code){↵
|
6 | setProperty(REPORT_CHART_Y_LABEL,label);↵ | | 12 | setProperty(ERRORCODE,code);↵
|
7 | }↵ | | 13 | }↵
|
8 | ↵ | | 14 | ↵
|
9 | /**↵ | | 15 | /**↵
|
10 | * The title is a the name for the chart. A page link will↵ | | 16 | * ↵
|
11 | * be generated using the title. The title will also be↵ | | 17 | return the comma separated string ↵
|
12 | * used for a page index.↵ | | |
|
13 | * @return chart title↵ | | 18 | for the filter↵
|
14 | */↵ | | 19 | */↵
|
15 | public String getTitle() {↵ | | 20 | public String getFilterString(){↵
|
16 | return getPropertyAsString(REPORT_CHART_TITLE);↵ | | 21 | return getPropertyAsString(FILTER);↵
|
17 | | | 22 |
|