org.media.mn8.protocol.jabber.xmlparser
Interface XMLEventListener
- All Known Implementing Classes:
- JabberStream
- public interface XMLEventListener
Interface for classes wishing to listen to events generated by the parser.
Method Summary |
void |
plaintextEncountered(java.lang.String text)
Method called when some plain text between two tags is encountered. |
void |
tagEnded(java.lang.String name)
The method called when a tag end is encountered. |
void |
tagStarted(java.lang.String name,
java.util.Hashtable attributes)
Method called when an tag start is encountered. |
tagStarted
public void tagStarted(java.lang.String name,
java.util.Hashtable attributes)
- Method called when an tag start is encountered.
- Parameters:
name
- Tag name.attributes
- The tags attributes.
plaintextEncountered
public void plaintextEncountered(java.lang.String text)
- Method called when some plain text between two tags is encountered.
- Parameters:
text
- The plain text in question.
tagEnded
public void tagEnded(java.lang.String name)
- The method called when a tag end is encountered.
- Parameters:
name
- The name of the tag that has just ended.
"Copyright © 2001 Internet Multicasting Services & media.org. All Rights Reserved."