1 | String getName() {↵ | | 1 | String getTitle() {↵
|
2 | return getPropertyAsString(HNAME);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
|
4 | ↵ | | 3 | REPORT_CHART_TITLE);↵
|
| | | 4 | }↵
|
| | | 5 | ↵
|
5 | /**↵ | | 6 | /**↵
|
6 | * Set the name for this object.↵ | | |
|
7 | ↵ | | 7 | * The title is a the name for the chart. A page link will↵
|
| | | 8 | * be generated using the title. The title will also be↵
|
| | | 9 | * used for a page index.↵
|
| | | 10 | * @param title↵
|
8 | */↵ | | 11 | */↵
|
9 | public synchronized void setName(String name) {↵ | | 12 | public void setTitle(String title) {↵
|
10 | this.setProperty(HNAME, name);↵ | | 13 | setProperty(REPORT_CHART_TITLE,title);↵
|
11 | }↵ | | 14 | }↵
|
|
12 | /**↵ | | 15 | /**↵
|
13 | * Get the value for this object.↵ | | |
|
14 | ↵ | | 16 | * The caption is a description for the chart explaining↵
|
| | | 17 | * what the chart means.↵
|
| | | 18 | * @return caption↵
|
15 | */↵ | | 19 | */↵
|
16 | public synchronized String getValue() {↵ | | 20 | public ↵
|
17 | return getPropertyAsString(VALUE);↵ | | |
|
18 | ↵ | | 21 | String getCaption() {↵
|
| | | 22 | return getPropertyAsString(REPORT_CHART_CAPTION);↵
|
19 | } | | 23 | }
|