1 | <?php |
||
5 | class Target extends AbstractType |
||
6 | { |
||
7 | protected $After = []; |
||
8 | |||
9 | protected $Conflicts = []; |
||
10 | |||
11 | protected $Documentation = []; |
||
12 | |||
13 | protected $DropInPaths = []; |
||
14 | |||
15 | protected $FragmentPath; |
||
16 | |||
17 | protected $OnFailure; |
||
18 | |||
19 | protected $RequiredBy = []; |
||
20 | |||
21 | protected $Requires = []; |
||
22 | |||
23 | protected $RequiresMountsFor = []; |
||
24 | |||
25 | protected $SourcePath; |
||
26 | |||
27 | protected $UnitFilePreset; |
||
28 | |||
29 | protected $UnitFileState; |
||
30 | |||
31 | protected $WantedBy = []; |
||
32 | |||
33 | protected $Wants = []; |
||
34 | |||
35 | /** |
||
36 | * @return array |
||
37 | */ |
||
38 | public function getAfter(): array |
||
42 | |||
43 | /** |
||
44 | * @param array $After |
||
45 | * @return Target |
||
46 | */ |
||
47 | public function setAfter(array $After): Target |
||
52 | |||
53 | /** |
||
54 | * @return array |
||
55 | */ |
||
56 | public function getConflicts(): array |
||
60 | |||
61 | /** |
||
62 | * @param array $Conflicts |
||
63 | * @return Target |
||
64 | */ |
||
65 | public function setConflicts(array $Conflicts): Target |
||
70 | |||
71 | /** |
||
72 | * @return array |
||
73 | */ |
||
74 | public function getDocumentation(): array |
||
78 | |||
79 | /** |
||
80 | * @param array $Documentation |
||
81 | * @return Target |
||
82 | */ |
||
83 | public function setDocumentation(array $Documentation): Target |
||
88 | |||
89 | /** |
||
90 | * @return array |
||
91 | */ |
||
92 | public function getDropInPaths(): array |
||
96 | |||
97 | /** |
||
98 | * @param array $DropInPaths |
||
99 | * @return Target |
||
100 | */ |
||
101 | public function setDropInPaths(array $DropInPaths): Target |
||
106 | |||
107 | /** |
||
108 | * @return mixed |
||
109 | */ |
||
110 | public function getFragmentPath() |
||
114 | |||
115 | /** |
||
116 | * @param mixed $FragmentPath |
||
117 | * @return Target |
||
118 | */ |
||
119 | public function setFragmentPath($FragmentPath) |
||
124 | |||
125 | /** |
||
126 | * @return mixed |
||
127 | */ |
||
128 | public function getOnFailure() |
||
132 | |||
133 | /** |
||
134 | * @param mixed $OnFailure |
||
135 | * @return Target |
||
136 | */ |
||
137 | public function setOnFailure($OnFailure) |
||
142 | |||
143 | /** |
||
144 | * @return array |
||
145 | */ |
||
146 | public function getRequiredBy(): array |
||
150 | |||
151 | /** |
||
152 | * @param array $RequiredBy |
||
153 | * @return Target |
||
154 | */ |
||
155 | public function setRequiredBy(array $RequiredBy): Target |
||
160 | |||
161 | /** |
||
162 | * @return array |
||
163 | */ |
||
164 | public function getRequires(): array |
||
168 | |||
169 | /** |
||
170 | * @param array $Requires |
||
171 | * @return Target |
||
172 | */ |
||
173 | public function setRequires(array $Requires): Target |
||
178 | |||
179 | /** |
||
180 | * @return array |
||
181 | */ |
||
182 | public function getRequiresMountsFor(): array |
||
186 | |||
187 | /** |
||
188 | * @param array $RequiresMountsFor |
||
189 | * @return Target |
||
190 | */ |
||
191 | public function setRequiresMountsFor(array $RequiresMountsFor): Target |
||
196 | |||
197 | /** |
||
198 | * @return mixed |
||
199 | */ |
||
200 | public function getSourcePath() |
||
204 | |||
205 | /** |
||
206 | * @param mixed $SourcePath |
||
207 | * @return Target |
||
208 | */ |
||
209 | public function setSourcePath($SourcePath) |
||
214 | |||
215 | /** |
||
216 | * @return mixed |
||
217 | */ |
||
218 | public function getUnitFilePreset() |
||
222 | |||
223 | /** |
||
224 | * @param mixed $UnitFilePreset |
||
225 | * @return Target |
||
226 | */ |
||
227 | public function setUnitFilePreset($UnitFilePreset) |
||
232 | |||
233 | /** |
||
234 | * @return mixed |
||
235 | */ |
||
236 | public function getUnitFileState() |
||
240 | |||
241 | /** |
||
242 | * @param mixed $UnitFileState |
||
243 | * @return Target |
||
244 | */ |
||
245 | public function setUnitFileState($UnitFileState) |
||
250 | |||
251 | /** |
||
252 | * @return array |
||
253 | */ |
||
254 | public function getWantedBy(): array |
||
258 | |||
259 | /** |
||
260 | * @param array $WantedBy |
||
261 | * @return Target |
||
262 | */ |
||
263 | public function setWantedBy(array $WantedBy): Target |
||
268 | |||
269 | /** |
||
270 | * @return array |
||
271 | */ |
||
272 | public function getWants(): array |
||
276 | |||
277 | /** |
||
278 | * @param array $Wants |
||
279 | * @return Target |
||
280 | */ |
||
281 | public function setWants(array $Wants): Target |
||
286 | } |
||
287 |