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(String text)
          Method called when some plain text between two tags is encountered.
 void tagEnded(String name)
          The method called when a tag end is encountered.
 void tagStarted(String name, Hashtable attributes)
          Method called when an tag start is encountered.
 

Method Detail

tagStarted

public void tagStarted(String name,
                       Hashtable attributes)
Method called when an tag start is encountered.

Parameters:
name - Tag name.
attributes - The tags attributes.

plaintextEncountered

public void plaintextEncountered(String text)
Method called when some plain text between two tags is encountered.

Parameters:
text - The plain text in question.

tagEnded

public void tagEnded(String name)
The method called when a tag end is encountered.

Parameters:
name - The name of the tag that has just ended.


"Copyright © 2000-2002 Internet Multicasting Services, media.org & noLimits Technologies. All Rights Reserved."