1 | <?php |
||
11 | class EncodedStringType extends AttributedStringType |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @property string $encodingType |
||
16 | */ |
||
17 | private $encodingType = null; |
||
18 | |||
19 | /** |
||
20 | * Gets as encodingType |
||
21 | * |
||
22 | * @return string |
||
23 | */ |
||
24 | public function getEncodingType() |
||
28 | |||
29 | /** |
||
30 | * Sets a new encodingType |
||
31 | * |
||
32 | * @param string $encodingType |
||
33 | * @return self |
||
34 | */ |
||
35 | public function setEncodingType($encodingType) |
||
40 | |||
41 | |||
42 | } |
||
43 | |||
44 |