1 | String getYLabel() {↵ | | 1 | String getMethod(){↵
|
2 | return getPropertyAsString(REPORT_CHART_Y_LABEL);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
4 | ↵ | | |
|
5 | public void setYLabel(String label) {↵ | | |
|
6 | setProperty(REPORT_CHART_Y_LABEL,label);↵ | | 3 | METHOD);↵
|
7 | }↵ | | 4 | }↵
|
8 | ↵ | | |
|
9 | /**↵ | | 5 | /**↵
|
10 | * The title is a the name for the chart. A page link will↵ | | 6 | * Method should add the JUnit testXXX method to the list at↵
|
11 | * be generated using the title. The title will also be↵ | | 7 | * the en↵
|
12 | * used for a page index.↵ | | |
|
13 | * @return chart titl↵ | | 8 | d, since the sequence matters.↵
|
14 | e↵ | | 9 | * @param methodName↵
|
15 | */↵ | | 10 | */↵
|
16 | public String getTitle() {↵ | | 11 | public void setMethod(String met↵
|
17 | return getPropertyAsString(REPORT_CHART_TITLE↵ | | 12 | hodName){↵
|
18 | );↵ | | 13 | setProperty(METHOD,methodName);↵
|
19 | }↵ | | 14 | }↵
|
20 | ↵ | | 15 | ↵
|
21 | /**↵ | | 16 | /**↵
|
22 | * The title is a the name for the chart. A page link will↵ | | 17 | * ↵
|
23 | * be generated using the title. The title will also be↵ | | 18 | get the success message↵
|
| | | 19 | */↵
|
| | | 20 | public String getSuccess(){↵
|
| | | 21 | return getPropertyAsString(SUCCESS);↵
|
| | | 22 | }↵
|
| | | 23 | ↵
|
| | | 24 | /**↵
|
24 | * used for a page index.↵ | | 25 | * set the success message↵
|
25 | * @param title↵ | | 26 | * @param success↵
|
26 | */↵ | | 27 | */↵
|
27 | public void setTitle(String title) {↵ | | 28 | public void setSuccess(String success){↵
|
28 | setProperty(REPORT_CHART_TITLE,title);↵ | | 29 | setProperty(SUCCESS,success);↵
|
29 | | | 30 |
|