1 | String getSuccessCode(){↵ | | 1 | String getXLabel() {↵
|
2 | return getPropertyAsString(SUCCESSCODE);↵ | | 2 | return getPropertyAsString(REPORT_CHART_X_LABEL);↵
|
3 | }↵ | | 3 | }↵
|
| | | 4 | ↵
|
4 | /**↵ | | 5 | /**↵
|
5 | * set the succes code. the success code should↵ | | 6 | * ↵
|
6 | * be uniq↵ | | 7 | The X data labels should be either the filename, date or some↵
|
7 | ue.↵ | | 8 | * other series of values↵
|
8 | * @param code↵ | | 9 | * @param label↵
|
9 | */↵ | | 10 | */↵
|
10 | public void setSuccessCode(String code){↵ | | 11 | public void setXLabel(String label) {↵
|
11 | setProperty(SUCCESSCODE,code);↵ | | 12 | setProperty(↵
|
12 | }↵ | | |
|
13 | ↵ | | |
|
14 | /**↵ | | |
|
15 | * get the failure message↵ | | |
|
16 | */↵ | | 13 | REPORT_CHART_X_LABEL,label);↵
|
| | | 14 | }↵
|
| | | 15 | ↵
|
17 | public String getFailure(){↵ | | 16 | public String getYLabel() {↵
|
18 | return getPropertyAsString(FAILURE);↵ | | 17 | return getPropertyAsString(REPORT_CHART_Y_LABEL);↵
|
19 | | | 18 |
|