1313abstract class VisualObject extends AbstractObject implements VisualObjectInterface
1414{
1515 /**
16- * {@inheritdoc}
17- */
16+ * {@inheritdoc}
17+ */
1818 public function getAutoSize ()
1919 {
2020 return $ this ->get ('autosize ' );
2121 }
2222
2323 /**
24- * {@inheritdoc}
25- */
24+ * {@inheritdoc}
25+ */
2626 public function setAutoSize ($ autoSize )
2727 {
2828 $ this ->set ('autosize ' , $ autoSize );
@@ -31,16 +31,16 @@ public function setAutoSize($autoSize)
3131 }
3232
3333 /**
34- * {@inheritdoc}
35- */
34+ * {@inheritdoc}
35+ */
3636 public function getBackgroundColor ()
3737 {
3838 return $ this ->get ('color ' );
3939 }
4040
4141 /**
42- * {@inheritdoc}
43- */
42+ * {@inheritdoc}
43+ */
4444 public function setBackgroundColor ($ color )
4545 {
4646 $ this ->set ('color ' , Color::toLazarus ($ color ));
@@ -49,16 +49,16 @@ public function setBackgroundColor($color)
4949 }
5050
5151 /**
52- * {@inheritdoc}
53- */
52+ * {@inheritdoc}
53+ */
5454 public function getBottom ()
5555 {
5656 return $ this ->get ('bottom ' );
5757 }
5858
5959 /**
60- * {@inheritdoc}
61- */
60+ * {@inheritdoc}
61+ */
6262 public function setBottom ($ bottom )
6363 {
6464 $ this ->set ('bottom ' , $ bottom );
@@ -67,16 +67,16 @@ public function setBottom($bottom)
6767 }
6868
6969 /**
70- * {@inheritdoc}
71- */
70+ * {@inheritdoc}
71+ */
7272 public function getHeight ()
7373 {
7474 return $ this ->get ('height ' );
7575 }
7676
7777 /**
78- * {@inheritdoc}
79- */
78+ * {@inheritdoc}
79+ */
8080 public function setHeight ($ height )
8181 {
8282 $ this ->set ('height ' , $ height );
@@ -85,16 +85,16 @@ public function setHeight($height)
8585 }
8686
8787 /**
88- * {@inheritdoc}
89- */
88+ * {@inheritdoc}
89+ */
9090 public function getLeft ()
9191 {
9292 return $ this ->get ('left ' );
9393 }
9494
9595 /**
96- * {@inheritdoc}
97- */
96+ * {@inheritdoc}
97+ */
9898 public function setLeft ($ left )
9999 {
100100 $ this ->set ('left ' , $ left );
@@ -103,16 +103,16 @@ public function setLeft($left)
103103 }
104104
105105 /**
106- * {@inheritdoc}
107- */
106+ * {@inheritdoc}
107+ */
108108 public function getRight ()
109109 {
110110 return $ this ->get ('right ' );
111111 }
112112
113113 /**
114- * {@inheritdoc}
115- */
114+ * {@inheritdoc}
115+ */
116116 public function setRight ($ right )
117117 {
118118 $ this ->set ('right ' , $ right );
@@ -121,16 +121,16 @@ public function setRight($right)
121121 }
122122
123123 /**
124- * {@inheritdoc}
125- */
124+ * {@inheritdoc}
125+ */
126126 public function getTop ()
127127 {
128128 return $ this ->get ('top ' );
129129 }
130130
131131 /**
132- * {@inheritdoc}
133- */
132+ * {@inheritdoc}
133+ */
134134 public function setTop ($ top )
135135 {
136136 $ this ->set ('top ' , $ top );
@@ -139,16 +139,16 @@ public function setTop($top)
139139 }
140140
141141 /**
142- * {@inheritdoc}
143- */
142+ * {@inheritdoc}
143+ */
144144 public function getWidth ()
145145 {
146146 return $ this ->get ('width ' );
147147 }
148148
149149 /**
150- * {@inheritdoc}
151- */
150+ * {@inheritdoc}
151+ */
152152 public function setWidth ($ width )
153153 {
154154 $ this ->set ('width ' , $ width );
@@ -157,16 +157,16 @@ public function setWidth($width)
157157 }
158158
159159 /**
160- * {@inheritdoc}
161- */
160+ * {@inheritdoc}
161+ */
162162 public function getVisible ()
163163 {
164164 return $ this ->get ('visible ' );
165165 }
166166
167167 /**
168- * {@inheritdoc}
169- */
168+ * {@inheritdoc}
169+ */
170170 public function setVisible ($ visible )
171171 {
172172 $ this ->set ('visible ' , $ visible );
0 commit comments