1 | void setFooterURL(String url) {↵ | | 1 | void setTitle(String title) {↵
|
2 | setProperty(REPORT_PAGE_FOOTER,url);↵ | | 2 | setProperty(REPORT_CHART_TITLE,title);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | ↵ | | 4 | /**↵
|
5 | public String getIntroduc↵ | | 5 | * The caption is a description for the chart explaining↵
|
| | | 6 | * what the chart means.↵
|
| | | 7 | * @return caption↵
|
| | | 8 | */↵
|
6 | tion() {↵ | | 9 | public String getCaption() {↵
|
7 | return getPropertyAsString(REPORT_PAGE_INTRO);↵ | | 10 | return getPropertyAsString(REPORT_CHART_CAPTION);↵
|
8 | }↵ | | 11 | }↵
|
9 | ↵ | | 12 | ↵
|
| | | 13 | /**↵
|
| | | 14 | * The caption is a description for the chart explaining↵
|
| | | 15 | * what the chart means.↵
|
| | | 16 | * @param caption↵
|
| | | 17 | */↵
|
10 | public void setIntroduction(String intro) {↵ | | 18 | public void setCaption(String caption) {↵
|
11 | setProperty(REPORT_PAGE_INTRO,intro);↵ | | 19 | setProperty(REPORT_CHART_CAPTION,caption);↵
|
12 | } | | 20 | }
|