Example #1
0
 /**
  * Notify a comment node.
  *
  * @param node comment node
  * @throws DocumentException if anything went wrong
  */
 public void notifyComment(final E node) throws DocumentException {
   for (SubtreeListener<? super E> listener : mListeners) {
     listener.comment(node);
   }
 }