public interface DocHandler
QdParser.http://www.koders.com/java),
Holger Eichelberger (adaptation to conventions)| Modifier and Type | Method and Description |
|---|---|
void |
endDocument()
End of an XML Document.
|
void |
endElement(java.lang.String tag)
End of an XML element.
|
void |
startDocument()
Start of an XML Document.
|
void |
startElement(java.lang.String tag,
HashMap<java.lang.String,java.lang.String> attributes)
Start of an XML Element.
|
void |
text(java.lang.String str)
Text node content.
|
void startElement(java.lang.String tag,
HashMap<java.lang.String,java.lang.String> attributes)
throws QdParserException
tag - element nameattributes - element attributesQdParserException - parse errorvoid endElement(java.lang.String tag)
throws QdParserException
tag - element nameQdParserException - parse errorvoid startDocument()
throws QdParserException
QdParserException - parse errorvoid endDocument()
throws QdParserException
QdParserException - parse errorvoid text(java.lang.String str) throws QdParserException
str - node contentQdParserException - parse error