|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Strategy interface for handling different parts of an XML WebRowSet in a way compatible with XML SAX parsers.
Method Summary | |
void |
characters(char[] ch,
int start,
int length)
Process an array of characters. |
void |
endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName)
Handles the end tag of an element. |
void |
startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
org.xml.sax.Attributes attr)
Handle the start tag of an element. |
Method Detail |
public void startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, org.xml.sax.Attributes attr) throws org.xml.sax.SAXException
uri
- Namespace URI of the element.localName
- Local name of the element.qName
- Qualified name of the element.attr
- Attributes of the element.
org.xml.sax.SAXException
- if there was a parsing error.public void endElement(java.lang.String uri, java.lang.String localName, java.lang.String qName) throws org.xml.sax.SAXException
uri
- Namespace URI of the element.localName
- Local name of the element.qName
- Qualified name of the element.
org.xml.sax.SAXException
- if there was a parsing errorpublic void characters(char[] ch, int start, int length) throws org.xml.sax.SAXException
ch
- Characters.start
- Offset within the character array indicating first
character to process.length
- Number of characters from start
(inclusive) to
process.
org.xml.sax.SAXException
- if there was a parsing error.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |