/**
  * DOCUMENT ME!
  *
  * @return DOCUMENT ME!
  * @throws NoSuchElementException DOCUMENT ME!
  */
 public AttributeIterator next() throws NoSuchElementException {
   if (this.hasNext()) {
     attributeIterator.init(treeNodeIterator.next());
     return attributeIterator;
   } else {
     throw new NoSuchElementException();
   }
 }