| com.google.gdata.data.photos.AtomData |
Known Indirect Subclasses
AlbumEntry,
AlbumFeed,
CommentEntry,
GphotoEntry<E extends GphotoEntry<E>>,
GphotoFeed<F extends GphotoFeed>,
PhotoEntry,
PhotoFeed,
TagEntry,
UserEntry,
UserFeed
|
A common interface for all of the methods that match between entry and feed.
This makes it possible to treat feeds and entries as being representative
of the same basic information, and allows retrieving/setting this information
in a consistent fashion. Each method includes links to the BaseEntry
or Source methods they forward to.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Gets a modifiable list of authors on this entry or feed.
| |||||||||||
Gets a set of categories on the entry or feed.
| |||||||||||
Gets a modifiable list of contributors on this entry or feed.
| |||||||||||
Gets the description of the entry or feed.
| |||||||||||
Get the id of the piece of data you're looking at.
| |||||||||||
Gets a modifiable list of links on the entry or feed.
| |||||||||||
Gets the rights associated with this entry or feed.
| |||||||||||
Gets the title of the entry or feed represented by this piece of data.
| |||||||||||
Gets the updated time on this entry or feed.
| |||||||||||
Set the description of the item.
| |||||||||||
Set the feed or entry atom:id.
| |||||||||||
Set the rights of the entry or feed.
| |||||||||||
Set the title of the feed or entry.
| |||||||||||
Set the updated date on the entry or feed.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From interface
com.google.gdata.data.photos.Extensible
| |||||||||||
Gets a modifiable list of authors on this entry or feed. Forwards to
getAuthors() or getAuthors().
Gets a set of categories on the entry or feed. Forwards to
getCategories() or getCategories().
Gets a modifiable list of contributors on this entry or feed. Forwards to
getContributors() or getContributors().
Gets the description of the entry or feed. This forwards to either
getSummary() or getSubtitle().
Gets a modifiable list of links on the entry or feed. Forwards to
getLinks() or getLinks().
Gets the rights associated with this entry or feed. Forwards to
getRights() or getRights().
Gets the title of the entry or feed represented by this piece of data.
Forwards to getTitle() or getTitle().
Gets the updated time on this entry or feed. Forwards to
getUpdated() or getUpdated().
Set the description of the item. Forwards to
setSummary(TextConstruct) or
setSubtitle(TextConstruct).
| description |
|---|
Set the feed or entry atom:id. Forwarded to either
setId(String) or setId(String).
| id | The id of the data item. |
|---|
Set the rights of the entry or feed. Forwards to
setRights(TextConstruct) or
setRights(TextConstruct).
| rights | The rights. |
|---|
Set the title of the feed or entry. Forwards to
setTitle(TextConstruct) or
setTitle(TextConstruct).
| title | The title of the data item. |
|---|
Set the updated date on the entry or feed. Forwards to
setUpdated(DateTime) or
setUpdated(DateTime).
| updated | The updated date of the data item. |
|---|