|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Receives SAX event and pass them on
Method Summary | |
void |
endElement(java.lang.String name)
Receives notification that the end of an XML element of given name has been read in the XML being deserialized |
void |
endPrefixMapping(java.lang.String prefix)
Receives notification that the scope of an XML prefix has just ended |
void |
readValue(java.lang.String value)
Receives notification that an XML value has been read in the XML being deserialized |
void |
startElement(java.lang.String name,
Attributes attributes)
Receives notification that an XML element of given name and attributes has been read in the XML being deserialized |
void |
startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Receives notification that an XML prefix has just been defined |
Method Detail |
public void startElement(java.lang.String name, Attributes attributes) throws org.xml.sax.SAXException
name
- the name of the element just openedattributes
- the attributes of this element
org.xml.sax.SAXException
- if an exception occur during processingpublic void readValue(java.lang.String value) throws org.xml.sax.SAXException
value
- the value just read
org.xml.sax.SAXException
- if an exception occur during processingpublic void endElement(java.lang.String name) throws org.xml.sax.SAXException
name
- the name of the element just ended
org.xml.sax.SAXException
- if an exception occur during processingpublic void startPrefixMapping(java.lang.String prefix, java.lang.String uri) throws org.xml.sax.SAXException
prefix
- the name of the prefix defineduri
- the uri qualifying the prefix
org.xml.sax.SAXException
- if an exception occur during processingpublic void endPrefixMapping(java.lang.String prefix) throws org.xml.sax.SAXException
prefix
- the name of the prefix ended
org.xml.sax.SAXException
- if an exception occur during processing
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |