home *** CD-ROM | disk | FTP | other *** search
- package BsscXML;
-
- import java.io.Reader;
-
- public interface IBsscXMLParser {
- void parse();
-
- void parse(Reader var1);
-
- void beginElement(String var1) throws BsscXMLException;
-
- void findValue(String var1) throws BsscXMLException;
-
- void beginDocument();
-
- void endElement(String var1) throws BsscXMLException;
-
- void endDocument() throws BsscXMLException;
-
- void findAttr(String var1, String var2) throws BsscXMLException;
-
- void setSource(Reader var1);
- }
-