BrightSide Workbench Full Report + Source Code
DWChart.java
Go to the documentation of this file.
1 /*
2  * TurrĂ³ i Cutiller Foundation. License notice.
3  * Copyright (C) 2015 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 package org.turro.dossier.dw;
20 
21 import org.zkoss.zul.AbstractChartModel;
22 
27 public class DWChart {
28 
29  private AbstractChartModel model;
30  private String type, orient, width, height, title;
31 
32  public AbstractChartModel getModel() {
33  return model;
34  }
35 
36  public void setModel(AbstractChartModel model) {
37  this.model = model;
38  }
39 
40  public String getWidth() {
41  return width;
42  }
43 
44  public void setWidth(String width) {
45  this.width = width;
46  }
47 
48  public String getHeight() {
49  return height;
50  }
51 
52  public void setHeight(String height) {
53  this.height = height;
54  }
55 
56  public String getTitle() {
57  return title;
58  }
59 
60  public void setTitle(String title) {
61  this.title = title;
62  }
63 
64  public String getType() {
65  return type;
66  }
67 
68  public void setType(String type) {
69  this.type = type;
70  }
71 
72  public String getOrient() {
73  return orient;
74  }
75 
76  public void setOrient(String orient) {
77  this.orient = orient;
78  }
79 
80 }
void setModel(AbstractChartModel model)
Definition: DWChart.java:36
void setWidth(String width)
Definition: DWChart.java:44
void setTitle(String title)
Definition: DWChart.java:60
void setType(String type)
Definition: DWChart.java:68
void setOrient(String orient)
Definition: DWChart.java:76
void setHeight(String height)
Definition: DWChart.java:52
AbstractChartModel getModel()
Definition: DWChart.java:32