| @@ 110-119 (lines=10) @@ | ||
| 107 | return $this->propIsBlankNode; |
|
| 108 | } |
|
| 109 | ||
| 110 | public function getPropIsResourceUri() |
|
| 111 | { |
|
| 112 | if (!$this->propIsResourceUri) { |
|
| 113 | $this->propIsResourceUri = false; |
|
| 114 | if ($this->classAnnotation->getClassIsRDF()) { |
|
| 115 | $this->propIsResourceUri = $this->getAnnotations("isresourceuri", false); |
|
| 116 | } |
|
| 117 | } |
|
| 118 | return $this->propIsResourceUri; |
|
| 119 | } |
|
| 120 | ||
| 121 | public function getPropIsClassAttr() |
|
| 122 | { |
|
| @@ 121-130 (lines=10) @@ | ||
| 118 | return $this->propIsResourceUri; |
|
| 119 | } |
|
| 120 | ||
| 121 | public function getPropIsClassAttr() |
|
| 122 | { |
|
| 123 | if (!$this->propIsClassAttr) { |
|
| 124 | $this->propIsClassAttr = false; |
|
| 125 | if (!$this->classAnnotation->getClassIsRDF()) { |
|
| 126 | $this->propIsClassAttr = $this->getAnnotations("isclassattr", false); |
|
| 127 | } |
|
| 128 | } |
|
| 129 | return $this->propIsClassAttr; |
|
| 130 | } |
|
| 131 | ||
| 132 | public function getPropDontCreateNode() |
|
| 133 | { |
|