1 | <?php |
||
24 | class Container |
||
25 | { |
||
26 | |||
27 | /** |
||
28 | * @var \mrcnpdlk\Grandstream\XMLApp\Application\Model\Components\ElemInterface[] |
||
29 | */ |
||
30 | private $tElements = []; |
||
31 | |||
32 | public function __construct() |
||
35 | |||
36 | /** |
||
37 | * @param \mrcnpdlk\Grandstream\XMLApp\Application\Model\Components\ElemInterface $oElement |
||
38 | * |
||
39 | * @return $this |
||
40 | */ |
||
41 | public function addElement(ElemInterface $oElement) |
||
47 | |||
48 | /** |
||
49 | * @param int $iX |
||
50 | * @param int $iY |
||
51 | * |
||
52 | * @return $this |
||
53 | */ |
||
54 | public function move(int $iX, int $iY) |
||
62 | |||
63 | /** |
||
64 | * @return \mrcnpdlk\Grandstream\XMLApp\Application\Model\Components\ElemInterface[] |
||
65 | */ |
||
66 | public function getElements() |
||
70 | } |