Summary
|
[Expand]
Inherited Methods |
From class
com.google.gdata.data.ExtensionPoint.ExtensionHandler
|
From class
com.google.gdata.data.AbstractExtension.AttributesHandler
|
void
|
processEndElement()
Called to process this element when the closing tag is encountered.
|
|
From class
com.google.gdata.util.XmlParser.ElementHandler
|
String
|
getAbsoluteUri(String uriValue)
Utility routine that combines the current state of xml:base
with the specified URI to obtain an absolute URI.
|
|
Boolean
|
getBooleanAttribute(Attributes attrs, String attrName)
Utility method to return the value of an xsd:boolean attribute.
|
|
XmlParser.ElementHandler
|
getChildHandler(String namespace, String localName, Attributes attrs)
Determines a handler for a child element.
|
|
XmlParser.ElementHandler
|
getChildHandler(String namespace, String qualifiedName, String localName, Attributes attrs, List<XmlNamespace> namespaces)
Determines a handler for a child element.
|
|
void
|
initializeXmlBlob(XmlBlob xmlBlob, boolean mixedContent, boolean fullTextIndex)
If a derived class wishes to retrieve all unrecognized XML in a blob,
it calls this method.
|
|
Boolean
|
parseBooleanValue(String value)
Utility method to parse provided xsd:boolean value.
|
|
void
|
processAttribute(String namespace, String localName, String value)
Called to process an attribute.
|
|
void
|
processAttribute(String namespace, String qualifiedName, String localName, String attrValue)
Called to process an attribute.
|
|
void
|
processEndElement()
Called to process this element when the closing tag is encountered.
|
|
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
Public Constructors
Public Methods
public
XmlParser.ElementHandler
getChildHandler
(String namespace, String localName, Attributes attrs)
Determines a handler for a child element.
The default implementation doesn't recognize anything. The result is a
schema error unless the parent handler accepts unrecognized XML.
XmlParser.
localname/namespace.
Parameters
| namespace
| Child element namespace URI. |
| localName
| Child element name. |
| attrs
| Child element attributes. These attributes will be
communicated to the child element handler through its
processAttribute(String, String, String) method. They are passed here because
sometimes the value of some attribute determines the element's
content type, so different element handlers may be needed. |
Returns
- Child element handler, or
null if the child is
unrecognized.