org.wpi.gdc.xml
Interface LiteXMLCallback
- public interface LiteXMLCallback
Callback for the LiteXML parser.
- Version:
- 1.5
- Author:
- dmpotter
- See Also:
LiteXML
Method Summary |
void |
enterTag(java.lang.String tagName,
Attribute[] attributes)
Enter a new tag. |
void |
exitTag(java.lang.String tagName)
Exit a tag. |
void |
receiveText(java.lang.String text)
Receive the text that is between the current tag and any upcoming tags. |
enterTag
public void enterTag(java.lang.String tagName,
Attribute[] attributes)
throws LiteXMLParseException
- Enter a new tag.
- Parameters:
tagName
- the name of the tagattributes
- an array of attributes- Throws:
LiteXMLParseException
- if for whatever reason you cannot continue.
exitTag
public void exitTag(java.lang.String tagName)
throws LiteXMLParseException
- Exit a tag.
- Parameters:
tagName
- the name of the tag- Throws:
LiteXMLParseException
- if for whatever reason you cannot continue.
receiveText
public void receiveText(java.lang.String text)
throws LiteXMLParseException
- Receive the text that is between the current tag and any upcoming tags.
- Parameters:
text
- the text being received.- Throws:
LiteXMLParseException
- if for whatever reason you cannot continue.
Copyright © 2001 WPI Game Development Club. All Rights Reserved.