]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/lists/groups/class_ListGroupList.php
Copyright notice updated
[hub.git] / application / hub / main / lists / groups / class_ListGroupList.php
index 1cf106252b62ddafadb8dd0fb9642b7f17a7ea3b..9a15cb023777c524439e8d96af92da547b04145f 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -37,13 +37,32 @@ class ListGroupList extends BaseList implements Listable {
         *
         * @return      $listInstance   An instance a Listable class
         */
-       public final static function createListGroupList () {
+       public static final function createListGroupList () {
                // Get new instance
                $listInstance = new ListGroupList();
 
                // Return the prepared instance
                return $listInstance;
        }
+
+       /**
+        * "Getter" for an iterator instance of this list (not implemented)
+        *
+        * @return      $iteratorInstance       An instance of a Iterator class
+        */
+       public function getListIterator () {
+               $this->debugInstance($this->__toString() . ' uses the default iterator. Please call getIterator() instead!');
+       }
+
+       /**
+        * Clears this list by cleaning up all groups together.
+        *
+        * @return      void
+        * @todo        0% done
+        */
+       public function clearList () {
+               $this->partialStub('Please implement this method.');
+       }
 }
 
 // [EOF]