View Javadoc

1   package com.wikihouse.wildcats0201.jdbcchart.dom4j;
2   
3   import org.dom4j.Document;
4   import org.dom4j.DocumentException;
5   
6   /***
7    * <B>SAXParser</B>.
8    * dom4jのSAXParserです。
9    * @author $Author: wildcats $
10   * @version $Revision: 3 $
11   */
12  public interface SAXParser {
13  
14  	/***
15  	 * XML文書をParseします。
16  	 * @param filename XMLファイル名
17  	 * @return Document
18  	 * @throws DocumentException DocumentException
19  	 */
20      public Document parse(String filename) throws DocumentException;
21  
22  }