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