コード例 #1
0
ファイル: AnnotationAssertion.php プロジェクト: rollxx/OWL
 function __construct($annotationProperty, $annotationSubject, $annotationValue)
 {
     parent::__construct($annotationProperty);
     $this->annotationSubject = $annotationSubject;
     $this->annotationValue = $annotationValue;
 }
コード例 #2
0
 function __construct($subAnnotationProperty, $superAnnotationProperty)
 {
     parent::__construct($subAnnotationProperty);
     $this->addElement($superAnnotationProperty);
 }
コード例 #3
0
 function __construct($annotationProperty, $domain)
 {
     parent::__construct($annotationProperty);
     $this->domain = $domain;
 }
コード例 #4
0
 function __construct($annotationProperty, $range)
 {
     parent::__construct($annotationProperty);
     $this->range = $range;
 }