1 package com.wikihouse.wildcats0201.jdbcchart.dom4j; 2 3 import org.dom4j.Document; 4 import org.dom4j.DocumentException; 5 6 /*** 7 * <B>SAXReaderWrapper </B>. dom4jのSAXReaderのラッパクラスです。 8 * 9 * @author $Author: wildcats $ 10 * @version $Revision: 5 $ 11 */ 12 public interface SAXReaderWrapper { 13 14 /*** 15 * SAXを用いてXMLファイルを読み込みます。 16 * 17 * @param filename 18 * XMLファイル名 19 * @return Document 20 * @throws DocumentException 21 * DocumentException 22 * @see org.dom4j.io.SAXReader#read(String) 23 */ 24 public Document parse(String filename) throws DocumentException; 25 26 }