コード例 #1
0
ファイル: CopyCommand.php プロジェクト: jurasm2/bubo
 public function __construct($treeNodeId, $isSinglePage, $clipboard)
 {
     parent::__construct();
     $this->treeNodeId = $treeNodeId;
     $this->isSinglePage = $isSinglePage;
     $this->clipboard = $clipboard;
 }
コード例 #2
0
 public function __construct($treeNodeId, $label, $assign)
 {
     parent::__construct();
     $this->treeNodeId = $treeNodeId;
     $this->label = $label;
     $this->assign = $assign;
 }
コード例 #3
0
 public function __construct($treeNodeId, $label, $lang)
 {
     parent::__construct();
     $this->treeNodeId = $treeNodeId;
     $this->label = $label;
     $this->lang = $lang;
 }
コード例 #4
0
ファイル: CopyPasteCommand.php プロジェクト: jurasm2/bubo
 public function __construct($lg, $clipboard)
 {
     parent::__construct();
     $this->lg = $lg;
     $this->clipboard = $clipboard;
 }
コード例 #5
0
ファイル: GraphVizCommand.php プロジェクト: jurasm2/bubo
 public function __construct($treeNodeId)
 {
     parent::__construct();
     $this->treeNodeId = $treeNodeId;
 }
コード例 #6
0
ファイル: CutCommand.php プロジェクト: jurasm2/bubo
 public function __construct($treeNodeId, $clipboard)
 {
     parent::__construct();
     $this->treeNodeId = $treeNodeId;
     $this->clipboard = $clipboard;
 }