summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/ProfileAnnotatorDecorator.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/ProfileAnnotatorDecorator.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/ProfileAnnotatorDecorator.php97
1 files changed, 97 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/ProfileAnnotatorDecorator.php b/www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/ProfileAnnotatorDecorator.php
new file mode 100644
index 00000000..ef607550
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/ProfileAnnotatorDecorator.php
@@ -0,0 +1,97 @@
+<?php
+
+namespace SMW\Query\ProfileAnnotators;
+
+use SMW\Query\ProfileAnnotator;
+use SMW\SemanticData;
+
+/**
+ * Decorator implementing the ProfileAnnotator interface
+ *
+ * @license GNU GPL v2+
+ * @since 1.9
+ *
+ * @author mwjames
+ */
+abstract class ProfileAnnotatorDecorator implements ProfileAnnotator {
+
+ /**
+ * @var ProfileAnnotator
+ */
+ protected $profileAnnotator;
+
+ /**
+ * @since 1.9
+ *
+ * @param ProfileAnnotator $profileAnnotator
+ */
+ public function __construct( ProfileAnnotator $profileAnnotator ) {
+ $this->profileAnnotator = $profileAnnotator;
+ }
+
+ /**
+ * ProfileAnnotator::getProperty
+ *
+ * @since 1.9
+ *
+ * @return DIProperty
+ */
+ public function getProperty() {
+ return $this->profileAnnotator->getProperty();
+ }
+
+ /**
+ * ProfileAnnotator::getContainer
+ *
+ * @since 1.9
+ *
+ * @return DIContainer
+ */
+ public function getContainer() {
+ return $this->profileAnnotator->getContainer();
+ }
+
+ /**
+ * @see ProfileAnnotator::getSemanticData
+ *
+ * @since 1.9
+ *
+ * @return SemanticData
+ */
+ public function getSemanticData() {
+ return $this->profileAnnotator->getSemanticData();
+ }
+
+ /**
+ * ProfileAnnotator::addAnnotation
+ *
+ * @since 1.9
+ *
+ * @return ProfileAnnotator
+ */
+ public function addAnnotation() {
+ $this->profileAnnotator->addAnnotation();
+ $this->addPropertyValues();
+ }
+
+ /**
+ * @since 2.5
+ *
+ * @param SemanticData $semanticData
+ */
+ public function pushAnnotationsTo( SemanticData $semanticData ) {
+
+ $this->addAnnotation();
+
+ $semanticData->addPropertyObjectValue(
+ $this->profileAnnotator->getProperty(),
+ $this->profileAnnotator->getContainer()
+ );
+ }
+
+ /**
+ * @since 1.9
+ */
+ protected abstract function addPropertyValues();
+
+}