1 | <?php |
||
17 | class PictureFrame extends Frame |
||
18 | { |
||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $mimeType; |
||
23 | |||
24 | /** |
||
25 | * @var int |
||
26 | */ |
||
27 | protected $type; |
||
28 | |||
29 | /** |
||
30 | * @var string |
||
31 | */ |
||
32 | protected $description; |
||
33 | |||
34 | /** |
||
35 | * @var string |
||
36 | */ |
||
37 | protected $data; |
||
38 | |||
39 | /** |
||
40 | * Get mime type. |
||
41 | * |
||
42 | * @return string |
||
43 | */ |
||
44 | public function getMimeType() |
||
48 | |||
49 | /** |
||
50 | * Set mime type. |
||
51 | * |
||
52 | * @param string $mimeType |
||
53 | * |
||
54 | * @return $this |
||
55 | */ |
||
56 | public function setMimeType($mimeType) |
||
62 | |||
63 | /** |
||
64 | * Get type. |
||
65 | * |
||
66 | * @return int |
||
67 | */ |
||
68 | public function getType() |
||
72 | |||
73 | /** |
||
74 | * Set type. |
||
75 | * |
||
76 | * @param int $type |
||
77 | * |
||
78 | * @return $this |
||
79 | */ |
||
80 | public function setType($type) |
||
86 | |||
87 | /** |
||
88 | * Get description. |
||
89 | * |
||
90 | * @return string |
||
91 | */ |
||
92 | public function getDescription() |
||
96 | |||
97 | /** |
||
98 | * Set description. |
||
99 | * |
||
100 | * @param string $description |
||
101 | * |
||
102 | * @return $this |
||
103 | */ |
||
104 | public function setDescription($description) |
||
110 | |||
111 | /** |
||
112 | * Get data. |
||
113 | * |
||
114 | * @return string |
||
115 | */ |
||
116 | public function getData() |
||
120 | |||
121 | /** |
||
122 | * Set data. |
||
123 | * |
||
124 | * @param string $data |
||
125 | * |
||
126 | * @return $this |
||
127 | */ |
||
128 | public function setData($data) |
||
134 | } |
||
135 |