예제 #1
0
 /**
  *
  * @param string $name
  * @param Image $icon
  */
 public function __construct($name = null, $icon = null)
 {
     parent::__construct();
     $this->setName($name);
     $this->setIcon($icon);
 }
예제 #2
0
 public function __construct($title)
 {
     parent::__construct();
     $this->title = $title;
 }
예제 #3
0
 public function __construct($title, Image $icon)
 {
     parent::__construct();
     $this->title = $title;
     $this->icon = $icon;
 }