1 | String getFooterURL() {↵ | | 1 | String getYLabel() {↵
|
2 | return getPropertyAsString(REPORT_PAGE_FOOTER);↵ | | 2 | return getPropertyAsString(REPORT_CHART_Y_LABEL);↵
|
3 | }↵ | | 3 | }↵
|
4 | ↵ | | 4 | ↵
|
5 | public void setFooterURL(String url) {↵ | | 5 | public void setYLabel(String label) {↵
|
6 | setProperty(REPORT_PAGE_FOOTER,url);↵ | | 6 | setProperty(REPORT_CHART_Y_LABEL,label);↵
|
7 | }↵ | | 7 | }↵
|
8 | ↵ | | 8 | ↵
|
9 | public String getIntroduction↵ | | 9 | /**↵
|
| | | 10 | * The title is a the name for the chart. A page link will↵
|
| | | 11 | * be generated using the title. The title will also be↵
|
| | | 12 | * used for a page index.↵
|
| | | 13 | * @return chart title↵
|
| | | 14 | */↵
|
10 | () {↵ | | 15 | public String getTitle() {↵
|
11 | return getPropertyAsString(REPORT_PAGE_INTRO);↵ | | 16 | return getPropertyAsString(REPORT_CHART_TITLE);↵
|
12 | }↵ | | 17 | }↵
|
13 | ↵ | | 18 | ↵
|
14 | public void setIntroduction↵ | | 19 | /**↵
|
| | | 20 | * The title is a the name for the chart. A page link will↵
|
| | | 21 | * be generated using the title. The title will also be↵
|
| | | 22 | * used for a page index.↵
|
| | | 23 | * @param title↵
|
| | | 24 | */↵
|
15 | (String intro) {↵ | | 25 | public void setTitle(String title) {↵
|
16 | setProperty(REPORT_PAGE_INTRO,intro);↵ | | 26 | setProperty(REPORT_CHART_TITLE,title);↵
|
17 | } | | 27 | }
|