1 | void setReceiveQueue(String name) {↵ | | 1 | void setTitle(String title) {↵
|
2 | setProperty(RECEIVE_QUEUE, name);↵ | | 2 | setProperty(RE↵
|
3 | }↵ | | |
|
|
4 | public String getContent() {↵ | | |
|
5 | return getPropertyAsString(XML_DATA);↵ | | |
|
6 | }↵ | | |
|
|
7 | ↵ | | 3 | PORT_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 | public void setContent(String content) {↵ | | 19 | public void setCaption(String c↵
|
9 | setProperty(XML_DATA, content);↵ | | |
|
10 | | | 20 | aption) {↵
|
| | | 21 | setProperty(REPORT_CHART_CAPTION,caption);↵
|
| | | 22 |
|