| java.lang.Object | ||
| ↳ | com.google.gdata.util.XmlParser.ElementHandler | |
| ↳ | com.google.gdata.data.OtherContent.AtomHandler | |
Parses XML in the Atom format.
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| extProfile | |||||||||||
| type | |||||||||||
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.util.XmlParser.ElementHandler
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Determines a handler for a child element.
| |||||||||||
Processes attributes.
| |||||||||||
Processes this element; overrides inherited method.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.util.XmlParser.ElementHandler
| |||||||||||
From class
java.lang.Object
| |||||||||||
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.
| 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. |
null if the child is
unrecognized.| ParseException | |
|---|---|
| IOException |
Processes attributes.
| namespace | Attribute namespace URI. |
|---|---|
| localName | Attribute name. |
| value | Attribute value. |
| ParseException |
|---|
Processes this element; overrides inherited method.
| ParseException |
|---|