Class GridView.ItemsIterator<T>
- java.lang.Object
-
- org.apache.wicket.markup.repeater.data.GridView.ItemsIterator<T>
-
-
Constructor Summary
Constructors Constructor Description ItemsIterator(Iterator<MarkupContainer> rows)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
Item<T>
next()
void
remove()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Constructor Detail
-
ItemsIterator
public ItemsIterator(Iterator<MarkupContainer> rows)
- Parameters:
rows
- iterator over child row views
-
-
Method Detail
-
remove
public void remove()
- Specified by:
remove
in interfaceIterator<T>
- See Also:
Iterator.remove()
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfaceIterator<T>
- See Also:
Iterator.hasNext()
-
-