uk.org.ogsadai.converters.webrowset
Class WebRowSetParser.PropertiesHandler
java.lang.Object
|
+--uk.org.ogsadai.converters.webrowset.WebRowSetParser.PropertiesHandler
- All Implemented Interfaces:
- ElementHandler
- Enclosing class:
- WebRowSetParser
- private class WebRowSetParser.PropertiesHandler
- extends java.lang.Object
- implements ElementHandler
A handler for the properties
element of a
WebRowSet.
- Author:
- The OGSA-DAI Team.
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. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
COPYRIGHT_NOTICE
private static final java.lang.String COPYRIGHT_NOTICE
- See Also:
- Constant Field Values
mExpected
private java.lang.String mExpected
WebRowSetParser.PropertiesHandler
private WebRowSetParser.PropertiesHandler()
startElement
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
- Description copied from interface:
ElementHandler
- Handle the start tag of an element.
- Specified by:
startElement
in interface ElementHandler
- Parameters:
uri
- Namespace URI of the element.localName
- Local name of the element.qName
- Qualified name of the element.attr
- Attributes of the element.
- Throws:
org.xml.sax.SAXException
- if there was a parsing error.
endElement
public void endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName)
- Description copied from interface:
ElementHandler
- Handles the end tag of an element.
- Specified by:
endElement
in interface ElementHandler
- Parameters:
uri
- Namespace URI of the element.localName
- Local name of the element.qName
- Qualified name of the element.
characters
public void characters(char[] ch,
int start,
int length)
- Description copied from interface:
ElementHandler
- Process an array of characters.
- Specified by:
characters
in interface ElementHandler
- Parameters:
ch
- Characters.start
- Offset within the character array indicating first
character to process.length
- Number of characters from start
(inclusive) to
process.