Class Overview
Parses Atom feed or entry data using classes based upon the old data
model in com.google.gdata.data.
Summary
| Public Constructors |
|
|
AtomDataParser()
Constructs a new AtomDataParser instance.
|
| Public Methods |
|
<R extends IAtom>
R
|
parse(Reader inputReader, InputProperties inProps, Class<R> resultClass)
Parses character content with the specified properties to produce a result
of an expected type.
|
Public Constructors
public
AtomDataParser
()
Constructs a new AtomDataParser instance.
Public Methods
public
R
parse
(Reader inputReader, InputProperties inProps, Class<R> resultClass)
Parses character content with the specified properties to produce a result
of an expected type. Concrete subclasses will provide an implementation
of this method that constructs a result type instance of the result class
and then parses into it from the provided Reader.
Parameters
| inputReader
| Reader to parse data from |
| inProps
| Input properties |
| resultClass
| Class to instantiate and parse result into. |
Protected Methods
protected
R
parse
(XmlEventSource eventSource, InputProperties inProps, Class<R> resultClass)
The parse method should be implemented by subclasses and should parse
input data from the provided XmlEventSource instance.
Parameters
| eventSource
| Event source. |
| inProps
| Input properties. |
| resultClass
| Result type. |