1 | void setName(String name) {↵ | | 1 | void setFooterURL(String url) {↵
|
2 | this.setProperty(HNAME, name);↵ | | 2 | setProperty(↵
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * Get the value for this object.↵ | | |
|
6 | */↵ | | |
|
7 | public synchronized String getValue() {↵ | | |
|
8 | return getPropertyAsString(VALUE);↵ | | |
|
9 | }↵ | | |
|
|
10 | /**↵ | | |
|
11 | * Set the value for this object.↵ | | |
|
12 | */↵ | | |
|
13 | public synchronized void setValue(String value) {↵ | | |
|
14 | this.setProperty(VALUE, value);↵ | | |
|
15 | | | 3 | REPORT_PAGE_FOOTER,url);↵
|
| | | 4 | }↵
|
| | | 5 | ↵
|
| | | 6 | public String getIntroduction() {↵
|
| | | 7 | return getPropertyAsString(REPORT_PAGE_INTRO);↵
|
| | | 8 | }↵
|
| | | 9 | ↵
|
| | | 10 | public void setIntroduction(String intro) {↵
|
| | | 11 | setProperty(REPORT_PAGE_INTRO,intro);↵
|
| | | 12 |
|