1 | String getSuccess(){↵ | | 1 | String getYAxis() {↵
|
2 | return getPropertyAsString(SUCCESS);↵ | | 2 | return getPropertyAsString(REPORT_CHART_Y_AXIS);↵
|
3 | }↵ | | 3 | }↵
|
4 | ↵ | | 4 | ↵
|
5 | /**↵ | | |
|
6 | * set the success message↵ | | |
|
7 | * @param success↵ | | |
|
8 | */↵ | | |
|
9 | public void setSuccess(String success){↵ | | 5 | public void setYAxis(String scale) {↵
|
10 | setProperty(SUCCESS,success);↵ | | 6 | setProperty(↵
|
11 | }↵ | | |
|
12 | ↵ | | |
|
13 | /**↵ | | |
|
14 | * get the success code defined by the user↵ | | |
|
15 | */↵ | | 7 | REPORT_CHART_Y_AXIS,scale);↵
|
| | | 8 | }↵
|
|
16 | public String getSuccessCode(){↵ | | 9 | public String getXLabel() {↵
|
17 | return getPropertyAsString(SUCCESSCODE);↵ | | 10 | return getPropertyAsString(REPORT_CHART_X_LABEL);↵
|
18 | }↵ | | 11 | }↵
|
| | | 12 | ↵
|
19 | /**↵ | | 13 | /**↵
|
20 | * set the succes code. the success code should↵ | | 14 | * ↵
|
21 | * be uniq↵ | | 15 | The X data labels should be either the filename, date or some↵
|
22 | ue.↵ | | 16 | * other series of values↵
|
23 | * @param code↵ | | 17 | * @param label↵
|
24 | */↵ | | 18 | */↵
|
25 | public void setSuccessCode(String code){↵ | | 19 | public void setXLabel(String label) {↵
|
26 | setProperty(SUCCESSCODE,code);↵ | | 20 | setProperty(REPORT_CHART_X_LABEL,label);↵
|
27 | } | | 21 | }
|