Package com.sun.java.help.impl
Interface ParserListener
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
FlatMap.FlatMapResourceBundle
,Parser.ParserMulticaster
ParserListener defines the interface for an object that listens to
parsing events in a Parser.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
This tells the listener that a comment was parsedvoid
This tells the listener that a DOCTYPE was parsedvoid
This tells the listener that a error was parsedvoid
This tells the listener that a PI was parsedvoid
This tells the listener that a Tag was parsedvoid
This tells the listener that a continous block of text was parsed
-
Method Details
-
tagFound
This tells the listener that a Tag was parsed- Parameters:
e
- The event
-
piFound
This tells the listener that a PI was parsed- Parameters:
e
- The event
-
doctypeFound
This tells the listener that a DOCTYPE was parsed- Parameters:
e
- The event
-
textFound
This tells the listener that a continous block of text was parsed- Parameters:
e
- The event
-
commentFound
This tells the listener that a comment was parsed- Parameters:
e
- The event
-
errorFound
This tells the listener that a error was parsed- Parameters:
e
- The event
-