1 | <?php |
||
21 | abstract class AbstractProgressBar implements ProgressBarInterface { |
||
22 | |||
23 | /** |
||
24 | * Animated. |
||
25 | * |
||
26 | * @var bool |
||
27 | */ |
||
28 | private $animated; |
||
29 | |||
30 | /** |
||
31 | * Content. |
||
32 | * |
||
33 | * @var string |
||
34 | */ |
||
35 | private $content; |
||
36 | |||
37 | /** |
||
38 | * Height. |
||
39 | * |
||
40 | * @var int |
||
41 | */ |
||
42 | private $height; |
||
43 | |||
44 | /** |
||
45 | * Max. |
||
46 | * |
||
47 | * @var int |
||
48 | */ |
||
49 | private $max; |
||
50 | |||
51 | /** |
||
52 | * Min. |
||
53 | * |
||
54 | * @var int |
||
55 | */ |
||
56 | private $min; |
||
57 | |||
58 | /** |
||
59 | * Striped. |
||
60 | * |
||
61 | * @var bool |
||
62 | */ |
||
63 | private $striped; |
||
64 | |||
65 | /** |
||
66 | * Type. |
||
67 | * |
||
68 | * @var string |
||
69 | */ |
||
70 | private $type; |
||
71 | |||
72 | /** |
||
73 | * Value. |
||
74 | * |
||
75 | * @var int |
||
76 | */ |
||
77 | private $value; |
||
78 | |||
79 | /** |
||
80 | * Constructor. |
||
81 | * |
||
82 | * @param string $type The type. |
||
83 | */ |
||
84 | public function __construct($type) { |
||
87 | |||
88 | /** |
||
89 | * {@inheritDoc} |
||
90 | */ |
||
91 | public function getAnimated() { |
||
94 | |||
95 | /** |
||
96 | * {@inheritDoc} |
||
97 | */ |
||
98 | public function getContent() { |
||
101 | |||
102 | /** |
||
103 | * {@inheritDoc} |
||
104 | */ |
||
105 | public function getHeight() { |
||
108 | |||
109 | /** |
||
110 | * {@inheritDoc} |
||
111 | */ |
||
112 | public function getMax() { |
||
115 | |||
116 | /** |
||
117 | * {@inheritDoc} |
||
118 | */ |
||
119 | public function getMin() { |
||
122 | |||
123 | /** |
||
124 | * {@inheritDoc} |
||
125 | */ |
||
126 | public function getPrefix() { |
||
129 | |||
130 | /** |
||
131 | * {@inheritDoc} |
||
132 | */ |
||
133 | public function getStriped() { |
||
136 | |||
137 | /** |
||
138 | * {@inheritDoc} |
||
139 | */ |
||
140 | public function getType() { |
||
143 | |||
144 | /** |
||
145 | * {@inheritDoc} |
||
146 | */ |
||
147 | public function getValue() { |
||
150 | |||
151 | /** |
||
152 | * {@inheritDoc} |
||
153 | */ |
||
154 | public function setAnimated($animated) { |
||
158 | |||
159 | /** |
||
160 | * {@inheritDoc} |
||
161 | */ |
||
162 | public function setContent($content) { |
||
166 | |||
167 | /** |
||
168 | * {@inheritDoc} |
||
169 | */ |
||
170 | public function setHeight($height) { |
||
174 | |||
175 | /** |
||
176 | * {@inheritDoc} |
||
177 | */ |
||
178 | public function setMax($max) { |
||
182 | |||
183 | /** |
||
184 | * {@inheritDoc} |
||
185 | */ |
||
186 | public function setMin($min) { |
||
190 | |||
191 | /** |
||
192 | * {@inheritDoc} |
||
193 | */ |
||
194 | public function setStriped($striped) { |
||
198 | |||
199 | /** |
||
200 | * {@inheritDoc} |
||
201 | */ |
||
202 | public function setType($type) { |
||
206 | |||
207 | /** |
||
208 | * {@inheritDoc} |
||
209 | */ |
||
210 | public function setValue($value) { |
||
214 | } |
||
215 |