]> 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 19bae27436494d804652772c64289000c906ada7..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,7 +37,7 @@ 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();
 
@@ -46,14 +46,14 @@ class ListGroupList extends BaseList implements Listable {
        }
 
        /**
-        * Gets an array from this group
+        * "Getter" for an iterator instance of this list
         *
-        * @return      $array  The array from this group
+        * @return      $iteratorInstance       An instance of a Iterator class
+        * @todo        0% done
         */
-       public final function getArrayFromGroup () {
-               $this->debugInstance();
+       public function getListIterator () {
+               $this->partialStub('Please implement this method.');
        }
-}
 
 // [EOF]
 ?>