コード例 #1
0
ファイル: SubtreeProcessor.java プロジェクト: sirixdb/sirix
 /**
  * Notify the beginning.
  *
  * @throws DocumentException if anything went wrong
  */
 public void notifyBegin() throws DocumentException {
   for (SubtreeListener<? super E> listener : mListeners) {
     listener.begin();
   }
 }