Package com.sun.java.help.impl
Interface ParserListener
-
- All Superinterfaces:
java.util.EventListener
- All Known Implementing Classes:
FlatMap.FlatMapResourceBundle,Parser.ParserMulticaster
public interface ParserListener extends java.util.EventListenerParserListener defines the interface for an object that listens to parsing events in a Parser.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcommentFound(ParserEvent e)This tells the listener that a comment was parsedvoiddoctypeFound(ParserEvent e)This tells the listener that a DOCTYPE was parsedvoiderrorFound(ParserEvent e)This tells the listener that a error was parsedvoidpiFound(ParserEvent e)This tells the listener that a PI was parsedvoidtagFound(ParserEvent e)This tells the listener that a Tag was parsedvoidtextFound(ParserEvent e)This tells the listener that a continous block of text was parsed
-
-
-
Method Detail
-
tagFound
void tagFound(ParserEvent e)
This tells the listener that a Tag was parsed- Parameters:
e- The event
-
piFound
void piFound(ParserEvent e)
This tells the listener that a PI was parsed- Parameters:
e- The event
-
doctypeFound
void doctypeFound(ParserEvent e)
This tells the listener that a DOCTYPE was parsed- Parameters:
e- The event
-
textFound
void textFound(ParserEvent e)
This tells the listener that a continous block of text was parsed- Parameters:
e- The event
-
commentFound
void commentFound(ParserEvent e)
This tells the listener that a comment was parsed- Parameters:
e- The event
-
errorFound
void errorFound(ParserEvent e)
This tells the listener that a error was parsed- Parameters:
e- The event
-
-