1 | String getTitle() {↵ | | 1 | String getName() {↵
|
2 | return getPropertyAsString(REPORT_CHART_TITLE);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
4 | ↵ | | |
|
5 | ↵ | | 3 | HNAME);↵
|
| | | 4 | }↵
|
|
6 | /**↵ | | 5 | /**↵
|
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↵ | | |
|
11 | ↵ | | 6 | * Set the name for this object.↵
|
12 | */↵ | | 7 | */↵
|
13 | public void setTitle(String title) {↵ | | 8 | public synchronized void setName(String name) {↵
|
14 | setProperty(REPORT_CHART_TITLE,title);↵ | | 9 | this.setProperty(HNAME, name);↵
|
15 | }↵ | | 10 | }↵
|
|
16 | /**↵ | | 11 | /**↵
|
17 | * The caption is a description for the chart explaining↵ | | |
|
18 | * what the chart means.↵ | | |
|
19 | * @return caption↵ | | |
|
20 | ↵ | | 12 | * Get the value for this object.↵
|
21 | */↵ | | 13 | */↵
|
22 | public String getCaption() {↵ | | 14 | public ↵
|
23 | return getPropertyAsString(REPORT_CHART_CAPTION);↵ | | |
|
24 | }↵ | | |
|
25 | ↵ | | |
|
26 | ↵ | | 15 | synchronized String getValue() {↵
|
| | | 16 | return getPropertyAsString(VALUE);↵
|
| | | 17 | }↵
|
|
27 | /**↵ | | 18 | /**↵
|
28 | * The caption is a description for the chart explaining↵ | | |
|
29 | * what the chart means.↵ | | |
|
30 | * @param caption↵ | | |
|
31 | ↵ | | 19 | * Set the value for this object.↵
|
32 | */↵ | | 20 | */↵
|
33 | public void setCaption(String caption) {↵ | | 21 | public synchronized void setValue(String ↵
|
34 | setProperty(REPORT_CHART_CAPTION,caption);↵ | | |
|
35 | ↵ | | 22 | value) {↵
|
| | | 23 | this.setProperty(VALUE, value);↵
|
36 | } | | 24 | }
|