Example #1
0
 /**
  * Notify an end tag.
  *
  * @param node element node
  * @throws DocumentException if anything went wrong
  */
 public void notifyEndElement(final E node) throws DocumentException {
   for (SubtreeListener<? super E> listener : mListeners) {
     listener.endElement(node);
   }
 }