1 | void setValue(String value) {↵ | | 1 | void setTitle(String title) {↵
|
2 | this.setProperty(VALUE, value);↵ | | 2 | setProperty(REPORT_CHART_TITLE,title);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * get the domain for this object.↵ | | |
|
6 | ↵ | | 5 | * The caption is a description for the chart explaining↵
|
| | | 6 | * what the chart means.↵
|
| | | 7 | * @return caption↵
|
7 | */↵ | | 8 | */↵
|
8 | public synchronized String getDomain() {↵ | | 9 | public String getCaption() {↵
|
9 | return getPropertyAsString(DOMAIN);↵ | | 10 | return getPropertyAsString(↵
|
10 | }↵ | | |
|
|
11 | ↵ | | 11 | REPORT_CHART_CAPTION);↵
|
| | | 12 | }↵
|
| | | 13 | ↵
|
12 | /**↵ | | 14 | /**↵
|
13 | * set the domain for this object.↵ | | |
|
14 | ↵ | | 15 | * The caption is a description for the chart explaining↵
|
| | | 16 | * what the chart means.↵
|
| | | 17 | * @param caption↵
|
15 | */↵ | | 18 | */↵
|
16 | public synchronized void setDomain(String domain) {↵ | | 19 | public void setCaption(String ↵
|
17 | setProperty(DOMAIN, domai↵ | | 20 | caption) {↵
|
18 | n);↵ | | 21 | setProperty(REPORT_CHART_CAPTION,caption);↵
|
19 | } | | 22 | }
|