예제 #1
0
 function __construct($dataType)
 {
     parent::__construct();
     $this->setDataType($dataType);
 }
예제 #2
0
 public function __construct($dataAtomic)
 {
     parent::__construct();
     $this->dataRange = $dataAtomic;
 }
예제 #3
0
 function __construct($dataPrimary)
 {
     parent::__construct();
     $this->dataRanges = array();
     $this->addElement($dataPrimary);
 }
예제 #4
0
파일: DataUnionOf.php 프로젝트: rollxx/OWL
 public function __construct($dataRange)
 {
     parent::__construct();
     $this->addElement($dataRange);
 }