1 | <?php |
||
16 | class Table |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | * @author stev leibelt <[email protected]> |
||
21 | * @since 2013-08-12 |
||
22 | */ |
||
23 | protected $color; |
||
24 | |||
25 | /** |
||
26 | * @var int |
||
27 | * @author stev leibelt <[email protected]> |
||
28 | * @since 2013-08-12 |
||
29 | */ |
||
30 | protected $height; |
||
31 | |||
32 | /** |
||
33 | * @var int |
||
34 | * @author stev leibelt <[email protected]> |
||
35 | * @since 2013-08-12 |
||
36 | */ |
||
37 | protected $length; |
||
38 | |||
39 | /** |
||
40 | * @var int |
||
41 | * @author stev leibelt <[email protected]> |
||
42 | * @since 2013-08-12 |
||
43 | */ |
||
44 | protected $width; |
||
45 | |||
46 | /** |
||
47 | * @param string $color |
||
48 | * @return $this |
||
49 | * @author stev leibelt <[email protected]> |
||
50 | * @since 2013-08-12 |
||
51 | */ |
||
52 | public function setColor($color) |
||
58 | |||
59 | /** |
||
60 | * @return string |
||
61 | * @author stev leibelt <[email protected]> |
||
62 | * @since 2013-08-12 |
||
63 | */ |
||
64 | public function getColor() |
||
68 | |||
69 | /** |
||
70 | * @param int $height |
||
71 | * @return $this |
||
72 | * @author stev leibelt <[email protected]> |
||
73 | * @since 2013-08-12 |
||
74 | */ |
||
75 | public function setHeight($height) |
||
81 | |||
82 | /** |
||
83 | * @return int |
||
84 | * @author stev leibelt <[email protected]> |
||
85 | * @since 2013-08-12 |
||
86 | */ |
||
87 | public function getHeight() |
||
91 | |||
92 | /** |
||
93 | * @param int $length |
||
94 | * @return $this |
||
95 | * @author stev leibelt <[email protected]> |
||
96 | * @since 2013-08-12 |
||
97 | */ |
||
98 | public function setLength($length) |
||
104 | |||
105 | /** |
||
106 | * @return int |
||
107 | * @author stev leibelt <[email protected]> |
||
108 | * @since 2013-08-12 |
||
109 | */ |
||
110 | public function getLength() |
||
114 | |||
115 | /** |
||
116 | * @param int $width |
||
117 | * @return $this |
||
118 | * @author stev leibelt <[email protected]> |
||
119 | * @since 2013-08-12 |
||
120 | */ |
||
121 | public function setWidth($width) |
||
127 | |||
128 | /** |
||
129 | * @return int |
||
130 | * @author stev leibelt <[email protected]> |
||
131 | * @since 2013-08-12 |
||
132 | */ |
||
133 | public function getWidth() |
||
137 | } |