20 package net.sf.gridarta.utils.xml;
22 import java.util.Iterator;
23 import java.util.NoSuchElementException;
24 import nu.xom.Element;
25 import nu.xom.Elements;
26 import org.jetbrains.annotations.NotNull;
44 return pos < elements.size();
49 if (pos >= elements.size()) {
50 throw new NoSuchElementException();
52 return elements.get(pos++);
56 public void remove() {
57 throw new UnsupportedOperationException();
ElementsIterator(@NotNull final Elements elements)