1 | void setIndex(String makeIndex) {↵ | | 1 | void setValue(String ↵
|
2 | setProperty(REPORT_PAGE_INDEX,makeIndex);↵ | | |
|
3 | }↵ | | |
|
4 | ↵ | | |
|
5 | public String getCSS() {↵ | | |
|
6 | return getPropertyAsString(REPORT_PAGE_CSS);↵ | | |
|
7 | }↵ | | |
|
8 | ↵ | | |
|
9 | public↵ | | 2 | value) {↵
|
| | | 3 | this.setProperty(VALUE, value);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * get the domain for this object.↵
|
| | | 7 | */↵
|
| | | 8 | public synchronized String getDomain() {↵
|
| | | 9 | return getPropertyAsString(DOMAIN);↵
|
| | | 10 | }↵
|
|
| | | 11 | /**↵
|
| | | 12 | * set the domain for this object.↵
|
| | | 13 | */↵
|
10 | void setCSS(String css) {↵ | | 14 | public synchronized void setDomain(String ↵
|
11 | setProperty(REPORT_PAGE_CSS,css);↵ | | |
|
12 | | | 15 | domain) {↵
|
| | | 16 | setProperty(DOMAIN, domain);↵
|
| | | 17 |
|