]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/class_BaseFrameworkSystem.php
Decorators moved, naming convention applied:
[core.git] / inc / classes / main / class_BaseFrameworkSystem.php
index 9ef0a809107303e908594b27bd6f5553eff4cf50..923ef2805d6f7ca1419cc20da32246e18d663241 100644 (file)
@@ -108,6 +108,11 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         */
        private $compressorInstance = null;
 
+       /**
+        * A Parseable instance
+        */
+       private $parserInstance = null;
+
        /**
         * The real class name
         */
@@ -1320,6 +1325,25 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
        public final function getCompressorInstance () {
                return $this->compressorInstance;
        }
+
+       /**
+        * Setter for Parseable instanxe
+        *
+        * @param       $parserInstance An instance of an Parseable
+        * @return      void
+        */
+       public final function setParserInstance (Parseable $parserInstance) {
+               $this->parserInstance = $parserInstance;
+       }
+
+       /**
+        * Getter for Parseable instanxe
+        *
+        * @return      $parserInstance An instance of an Parseable
+        */
+       public final function getParserInstance () {
+               return $this->parserInstance;
+       }
 }
 
 // [EOF]