1 | String getPass() {↵ | | 1 | String getYAxis() {↵
|
2 | return getPropertyAsString(PASSWORD);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
|
4 | public synchronized↵ | | 3 | REPORT_CHART_Y_AXIS);↵
|
| | | 4 | }↵
|
| | | 5 | ↵
|
5 | void setPass(String pass) {↵ | | 6 | public void setYAxis(String scale) {↵
|
6 | setProperty(PASSWORD, pass);↵ | | 7 | setProperty(↵
|
7 | ↵ | | 8 | REPORT_CHART_Y_AXIS,scale);↵
|
8 | }↵ | | 9 | }↵
|
|
9 | public synchronized String getDomain() {↵ | | 10 | public String getXLabel() {↵
|
10 | return getPropertyAsString(DOMAIN);↵ | | 11 | return getPropertyAsString(↵
|
11 | }↵ | | |
|
|
12 | public synchronized↵ | | 12 | REPORT_CHART_X_LABEL);↵
|
| | | 13 | }↵
|
| | | 14 | ↵
|
| | | 15 | /**↵
|
| | | 16 | * The X data labels should be either the filename, date or some↵
|
| | | 17 | * other series of values↵
|
| | | 18 | * @param label↵
|
| | | 19 | */↵
|
13 | void setDomain(String domain) {↵ | | 20 | public void setXLabel(String label) {↵
|
14 | setProperty(DOMAIN, domain);↵ | | 21 | setProperty(↵
|
15 | | | 22 | REPORT_CHART_X_LABEL,label);↵
|
| | | 23 |
|