]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/iterator/class_BaseIterator.php
Self-test added, interfaces/classes extended:
[hub.git] / application / hub / main / iterator / class_BaseIterator.php
index bea332d327c4ee1dfe222fbf6ca1ae463699e096..82745deccb938ce559b42d6d554c96c746361596 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 class BaseIterator extends BaseHubSystem {
-       /**
-        * Instance of the list
-        */
-       private $listInstance = null;
-
        /**
         * Protected constructor
         *
@@ -37,25 +32,6 @@ class BaseIterator extends BaseHubSystem {
                // Call parent constructor
                parent::__construct($className);
        }
-
-       /**
-        * Setter for the list instance
-        *
-        * @param       $listInstance   A list of IteratorAggregate
-        * @return      void
-        */
-       protected final function setListInstance (IteratorAggregate $listInstance) {
-               $this->listInstance = $listInstance;
-       }
-
-       /**
-        * Getter for the list instance
-        *
-        * @return      $listInstance   A list of IteratorAggregate
-        */
-       protected final function getListInstance () {
-               return $this->listInstance;
-       }
 }
 
 // [EOF]