Exemplo n.º 1
0
 public function __construct(WidgetInterface $innerWidget, $x, $y)
 {
     parent::__construct($x, $y);
     $this->innerWidget = $innerWidget;
 }
Exemplo n.º 2
0
 public function __construct($x, $y, $diameterH, $diameterY)
 {
     parent::__construct($x, $y);
     $this->diameterH = $diameterH;
     $this->diameterY = $diameterY;
 }
Exemplo n.º 3
0
 public function __construct($x, $y, $width, $height)
 {
     parent::__construct($x, $y);
     $this->width = $width;
     $this->height = $height;
 }