1 | <?php |
||
11 | class TEntityTypeShapeType |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @property string $entityType |
||
16 | */ |
||
17 | private $entityType = null; |
||
18 | |||
19 | /** |
||
20 | * @property float $pointX |
||
21 | */ |
||
22 | private $pointX = null; |
||
23 | |||
24 | /** |
||
25 | * @property float $pointY |
||
26 | */ |
||
27 | private $pointY = null; |
||
28 | |||
29 | /** |
||
30 | * @property float $width |
||
31 | */ |
||
32 | private $width = null; |
||
33 | |||
34 | /** |
||
35 | * @property float $height |
||
36 | */ |
||
37 | private $height = null; |
||
38 | |||
39 | /** |
||
40 | * @property boolean $isExpanded |
||
41 | */ |
||
42 | private $isExpanded = null; |
||
43 | |||
44 | /** |
||
45 | * @property string $fillColor |
||
46 | */ |
||
47 | private $fillColor = null; |
||
48 | |||
49 | /** |
||
50 | * Gets as entityType |
||
51 | * |
||
52 | * @return string |
||
53 | */ |
||
54 | public function getEntityType() |
||
58 | |||
59 | /** |
||
60 | * Sets a new entityType |
||
61 | * |
||
62 | * @param string $entityType |
||
63 | * @return self |
||
64 | */ |
||
65 | public function setEntityType($entityType) |
||
70 | |||
71 | /** |
||
72 | * Gets as pointX |
||
73 | * |
||
74 | * @return float |
||
75 | */ |
||
76 | public function getPointX() |
||
80 | |||
81 | /** |
||
82 | * Sets a new pointX |
||
83 | * |
||
84 | * @param float $pointX |
||
85 | * @return self |
||
86 | */ |
||
87 | public function setPointX($pointX) |
||
92 | |||
93 | /** |
||
94 | * Gets as pointY |
||
95 | * |
||
96 | * @return float |
||
97 | */ |
||
98 | public function getPointY() |
||
102 | |||
103 | /** |
||
104 | * Sets a new pointY |
||
105 | * |
||
106 | * @param float $pointY |
||
107 | * @return self |
||
108 | */ |
||
109 | public function setPointY($pointY) |
||
114 | |||
115 | /** |
||
116 | * Gets as width |
||
117 | * |
||
118 | * @return float |
||
119 | */ |
||
120 | public function getWidth() |
||
124 | |||
125 | /** |
||
126 | * Sets a new width |
||
127 | * |
||
128 | * @param float $width |
||
129 | * @return self |
||
130 | */ |
||
131 | public function setWidth($width) |
||
136 | |||
137 | /** |
||
138 | * Gets as height |
||
139 | * |
||
140 | * @return float |
||
141 | */ |
||
142 | public function getHeight() |
||
146 | |||
147 | /** |
||
148 | * Sets a new height |
||
149 | * |
||
150 | * @param float $height |
||
151 | * @return self |
||
152 | */ |
||
153 | public function setHeight($height) |
||
158 | |||
159 | /** |
||
160 | * Gets as isExpanded |
||
161 | * |
||
162 | * @return boolean |
||
163 | */ |
||
164 | public function getIsExpanded() |
||
168 | |||
169 | /** |
||
170 | * Sets a new isExpanded |
||
171 | * |
||
172 | * @param boolean $isExpanded |
||
173 | * @return self |
||
174 | */ |
||
175 | public function setIsExpanded($isExpanded) |
||
180 | |||
181 | /** |
||
182 | * Gets as fillColor |
||
183 | * |
||
184 | * @return string |
||
185 | */ |
||
186 | public function getFillColor() |
||
190 | |||
191 | /** |
||
192 | * Sets a new fillColor |
||
193 | * |
||
194 | * @param string $fillColor |
||
195 | * @return self |
||
196 | */ |
||
197 | public function setFillColor($fillColor) |
||
202 | |||
203 | /** |
||
204 | * @return bool |
||
205 | */ |
||
206 | public function isOK() |
||
213 | } |
||
214 |