Example #1
0
 function __construct($dataPropertyExpression, $dataRange = null)
 {
     parent::__construct();
     $this->setDataPropertyExpression($dataPropertyExpression);
     if (isset($dataRange)) {
         $this->dataRange = $dataRange;
     }
 }
Example #2
0
 public function __toString()
 {
     return "( not " . parent::__toString() . " )";
 }
Example #3
0
 function __construct($objectPropertyExpression, $inverse = false)
 {
     parent::__construct();
     $this->objectPropertyExpression = $objectPropertyExpression;
     $this->inverse = $inverse;
 }
Example #4
0
 function __construct(Iri $element)
 {
     parent::__construct($element);
 }