Known Direct Subclasses
|
Known Indirect Subclasses
BaseEntry.AtomHandler,
BaseFeed.FeedHandler,
Categories.Handler,
Collection.Handler,
ExtensionDescription.Handler,
Link.AtomHandler,
OpenSearchDescriptionDocument.Handler,
Person.AtomHandler,
PubControl.AtomHandler,
ServiceDocument.Handler,
SitemapMobile.Handler,
SitemapNews.Handler,
Source.SourceHandler,
W3CPoint.Handler,
Who.Handler,
Workspace.Handler
|
Class Overview
Base class for custom element handlers that uses AttributeHelper
to consume the attributes and the element's text content.
Summary
| Public Methods |
|
void
|
processEndElement()
Called to process this element when the closing tag is encountered.
|
|
[Expand]
Inherited Methods |
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)
|
|
Fields
attribute helper or null to suppress its use
Public Constructors
public
AbstractExtension.AttributesHandler
(Attributes attrs)
Public Methods
public
void
processEndElement
()
Called to process this element when the closing tag is encountered.
The default implementation refuses to accept text() content, unless
the handler is configured to accept unrecognized XML with mixed content.