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

Method Index

 o cdataParsed(SGMLEvent)
Invoked when a cdata has been parsed.
 o endTagParsed(SGMLEvent)
Invoked when a end tag has been parsed.
 o parsingFinished(SGMLEvent)
Invoked when a parsing has been finished.
 o startTagParsed(SGMLEvent)
Invoked when a start tag has been parsed.

Methods

 o 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.
 o 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.
 o cdataParsed
 public abstract void cdataParsed(SGMLEvent e) throws IOException
Invoked when a cdata has been parsed.

Throws: IOException
If an I/O error occurs.
 o 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