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