Methods Summary |
---|
public void | close()Cleans up any state in the parser. Should be called when caller is
finished parsing a GData feed.
|
public boolean | hasMoreData()Returns whether or not there is more data in the feed.
|
public com.google.wireless.gdata.data.Feed | init()Starts parsing the feed, returning a {@link Feed} containing information
about the feed. Note that the {@link Feed} does not contain any
information about any entries, as the entries have not yet been parsed.
|
public com.google.wireless.gdata.data.Entry | parseStandaloneEntry()Parses a GData entry. You can either call {@link #init()} or
{@link #parseStandaloneEntry()} for a given feed.
|
public com.google.wireless.gdata.data.Entry | readNextEntry(com.google.wireless.gdata.data.Entry entry)Reads and parses the next entry in the feed. The {@link Entry} that
should be filled is passed in -- if null, the entry will be created
by the parser; if not null, the entry will be cleared and reused.
|