javax.faces.component
static class: UIComponentBase.FacetsMapValuesIterator [javadoc |
source]
java.lang.Object
javax.faces.component.UIComponentBase$FacetsMapValuesIterator
All Implemented Interfaces:
Iterator
Method from javax.faces.component.UIComponentBase$FacetsMapValuesIterator Summary: |
---|
hasNext, next, remove |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from javax.faces.component.UIComponentBase$FacetsMapValuesIterator Detail: |
public boolean hasNext() {
return (iterator.hasNext());
}
|
public UIComponent next() {
last = iterator.next();
return (map.get(last));
}
|
public void remove() {
if (last == null) {
throw new IllegalStateException();
}
map.remove(last);
last = null;
}
|