Class Overview
Parses XML in the Atom format.
Summary
| Public Methods |
|
void
|
processAttribute(String namespace, String localName, String value)
Processes attributes.
|
|
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)
|
|
Public Constructors
public
OutOfLineContent.AtomHandler
()
Public Methods
public
void
processAttribute
(String namespace, String localName, String value)
Parameters
| namespace
| Attribute namespace URI. |
| localName
| Attribute name. |
| value
| Attribute value. |
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.