1 | String getCSS() {↵ | | 1 | String getName() {↵
|
2 | return getPropertyAsString(REPORT_PAGE_CSS);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
4 | ↵ | | |
|
5 | public↵ | | 3 | HNAME);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * Set the name for this object.↵
|
| | | 7 | */↵
|
6 | void setCSS(String css) {↵ | | 8 | public synchronized void setName(String name) {↵
|
7 | setProperty(REPORT_PAGE_CSS,css);↵ | | 9 | this.setProperty(↵
|
8 | }↵ | | |
|
9 | ↵ | | |
|
10 | public String getHeaderURL() {↵ | | |
|
11 | return getPropertyAsString(REPORT_PAGE_HEADER);↵ | | |
|
12 | }↵ | | |
|
13 | ↵ | | |
|
14 | public void setHeaderURL(String url) {↵ | | |
|
15 | setProperty(REPORT_PAGE_HEADER,url);↵ | | |
|
16 | | | 10 | HNAME, name);↵
|
| | | 11 | }↵
|
|
| | | 12 | /**↵
|
| | | 13 | * Get the value for this object.↵
|
| | | 14 | */↵
|
| | | 15 | public synchronized String getValue() {↵
|
| | | 16 | return getPropertyAsString(VALUE);↵
|
| | | 17 | }↵
|
|
| | | 18 | /**↵
|
| | | 19 | * Set the value for this object.↵
|
| | | 20 | */↵
|
| | | 21 | public synchronized void setValue(String value) {↵
|
| | | 22 | this.setProperty(VALUE, value);↵
|
| | | 23 |
|