Javadoc
This commit is contained in:
parent
8e0bc678ad
commit
908a79dc8c
|
@ -91,10 +91,10 @@ public class IteratorIterable<E> implements Iterable<E> {
|
|||
};
|
||||
}
|
||||
|
||||
/** the iterator being adapted into an iterable. */
|
||||
/** The iterator being adapted into an iterable. */
|
||||
private final Iterator<? extends E> iterator;
|
||||
|
||||
/** the iterator parameterized as the {@link #iterator()} return type. */
|
||||
/** The iterator parameterized as the {@link #iterator()} return type. */
|
||||
private final Iterator<E> typeSafeIterator;
|
||||
|
||||
/**
|
||||
|
|
|
@ -34,7 +34,7 @@ import org.w3c.dom.NodeList;
|
|||
*/
|
||||
public class NodeListIterator implements Iterator<Node> {
|
||||
|
||||
/** the original NodeList instance */
|
||||
/** The original NodeList instance */
|
||||
private final NodeList nodeList;
|
||||
/** The current iterator index */
|
||||
private int index;
|
||||
|
|
Loading…
Reference in New Issue