All Packages Class Hierarchy This Package Previous Next Index
Interface jp.kyasu.sgml.SGMLParserListener
- public interface SGMLParserListener
- extends EventListener
The listener interface for receiving sgml events from
SGMLParser
.
- Version:
- 09 Aug 1997
- Author:
- Kazuki YASUMATSU
- See Also:
- SGMLEvent, SGMLParser
-
cdataParsed(SGMLEvent)
- Invoked when a cdata has been parsed.
-
endTagParsed(SGMLEvent)
- Invoked when a end tag has been parsed.
-
parsingFinished(SGMLEvent)
- Invoked when a parsing has been finished.
-
startTagParsed(SGMLEvent)
- Invoked when a start tag has been parsed.
startTagParsed
public abstract void startTagParsed(SGMLEvent e) throws IOException
- Invoked when a start tag has been parsed.
- Throws: IOException
- If an I/O error occurs.
endTagParsed
public abstract void endTagParsed(SGMLEvent e) throws IOException
- Invoked when a end tag has been parsed.
- Throws: IOException
- If an I/O error occurs.
cdataParsed
public abstract void cdataParsed(SGMLEvent e) throws IOException
- Invoked when a cdata has been parsed.
- Throws: IOException
- If an I/O error occurs.
parsingFinished
public abstract void parsingFinished(SGMLEvent e) throws IOException
- Invoked when a parsing has been finished.
- Throws: IOException
- If an I/O error occurs.
All Packages Class Hierarchy This Package Previous Next Index