]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/lists/groups/class_ListGroupList.php
Introduced getListIterator() to all lists implementing Listable
[hub.git] / application / hub / main / lists / groups / class_ListGroupList.php
index 1cf106252b62ddafadb8dd0fb9642b7f17a7ea3b..045569349719349e9f1d00f55991800cecbca65b 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 - 2011 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -37,14 +37,23 @@ 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
+        *
+        * @return      $iteratorInstance       An instance of a Iterator class
+        * @todo        0% done
+        */
+       public function getListIterator () {
+               $this->partialStub('Please implement this method.');
+       }
 
 // [EOF]
 ?>