1 | String getHeaderURL() {↵ | | 1 | String getTitle() {↵
|
2 | return getPropertyAsString(REPORT_PAGE_HEADER);↵ | | 2 | return getPropertyAsString(REPORT_CHART_TITLE);↵
|
3 | }↵ | | 3 | }↵
|
4 | ↵ | | 4 | ↵
|
| | | 5 | /**↵
|
| | | 6 | * The title is a the name for the chart. A page link will↵
|
| | | 7 | * be generated using the title. The title will also be↵
|
| | | 8 | * used for a page index.↵
|
| | | 9 | * @param title↵
|
| | | 10 | */↵
|
5 | public void setHeaderURL(String url) {↵ | | 11 | public void setTitle(String title) {↵
|
6 | setProperty(REPORT_PAGE_HEADER,url);↵ | | 12 | setProperty(REPORT_CHART_TITLE,title);↵
|
7 | }↵ | | 13 | }↵
|
|
8 | ↵ | | 14 | /**↵
|
| | | 15 | * The caption is a description for the chart explaining↵
|
| | | 16 | * what the chart means.↵
|
| | | 17 | * @return caption↵
|
| | | 18 | */↵
|
9 | public String getFooterURL() {↵ | | 19 | public String getCaption() {↵
|
10 | return getPropertyAsString(REPORT_PAGE_FOOTER);↵ | | 20 | return getPropertyAsString(REPORT_CHART_CAPTION);↵
|
11 | } | | 21 | }
|