javax.faces.component
static final class: UIComponentBase.FacetsAndChildrenIterator [javadoc |
source]
java.lang.Object
javax.faces.component.UIComponentBase$FacetsAndChildrenIterator
All Implemented Interfaces:
Iterator
Method from javax.faces.component.UIComponentBase$FacetsAndChildrenIterator 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$FacetsAndChildrenIterator Detail: |
public boolean hasNext() {
this.update();
return this.iterator.hasNext();
}
|
public UIComponent next() {
this.update();
return this.iterator.next();
}
|
public void remove() {
throw new UnsupportedOperationException();
}
|