| java.lang.Object com.sun.syndication.feed.atom.Entry
Constructor Summary | |
public | Entry() Default constructor. |
Entry | public Entry()(Code) | | Default constructor. All properties are set to null.
|
equals | public boolean equals(Object other)(Code) | | Indicates whether some other object is "equal to" this one as defined by the Object equals() method.
Parameters: other - he reference object with which to compare. true if 'this' object is equal to the 'other' object. |
getAlternateLinks | public List getAlternateLinks()(Code) | | Returns the entry alternate links.
a list of Link elements with the entry alternate links, an empty list if none. |
getAuthors | public List getAuthors()(Code) | | Returns the entry author.
the entry author, null if none. |
getCategories | public List getCategories()(Code) | | Returns the categories
Returns the categories. since: Atom 1.0 |
getContents | public List getContents()(Code) | | Returns the entry contents.
a list of Content elements with the entry contents,an empty list if none. |
getContributors | public List getContributors()(Code) | | Returns the entry contributors.
a list of Person elements with the entry contributors,an empty list if none. |
getCreated | public Date getCreated()(Code) | | Returns the entry created date (Atom 0.3 only)
the entry created date, null if none. |
getForeignMarkup | public Object getForeignMarkup()(Code) | | Returns foreign markup found at entry level.
list of Opaque object to discourage use |
getId | public String getId()(Code) | | Returns the entry ID.
the entry ID, null if none. |
getIssued | public Date getIssued()(Code) | | Returns the entry issued date (Atom 0.3, maps to
getPublished() ).
the entry issued date, null if none. |
getModified | public Date getModified()(Code) | | Returns the entry modified date (Atom 0.3, maps to
getUpdated() ).
the entry modified date, null if none. |
getModule | public Module getModule(String uri)(Code) | | Returns the module identified by a given URI.
Parameters: uri - the URI of the ModuleImpl. The module with the given URI, null if none. |
getModules | public List getModules()(Code) | | Returns the entry modules.
a list of ModuleImpl elements with the entry modules,an emtpy list if none. |
getOtherLinks | public List getOtherLinks()(Code) | | Returns the entry non-alternate links.
the list of Link elements with the entry non-alternate links to set,an empty list if none. |
getPublished | public Date getPublished()(Code) | | Returns the published
Returns the published. since: Atom 1.0 |
getRights | public String getRights()(Code) | | Returns the rights
Returns the rights. since: Atom 1.0 |
getSource | public Feed getSource()(Code) | | Returns the source
Returns the source. |
getSummary | public Content getSummary()(Code) | | Returns the entry summary.
the entry summary, null if none. |
getTitle | public String getTitle()(Code) | | Returns the entry title.
the entry title, null if none. |
getTitleEx | public Content getTitleEx()(Code) | | Returns the entry title as a text construct.
the entry title, null if none. |
getUpdated | public Date getUpdated()(Code) | | Returns the updated
Returns the updated. since: Atom 1.0 |
getXmlBase | public String getXmlBase()(Code) | | Returns the xmlBase
Returns the xmlBase. since: Atom 1.0 |
hashCode | public int hashCode()(Code) | | Returns a hashcode value for the object.
It follows the contract defined by the Object hashCode() method.
the hashcode of the bean object. |
setAlternateLinks | public void setAlternateLinks(List alternateLinks)(Code) | | Sets the entry alternate links.
Parameters: alternateLinks - the list of Link elements with the entry alternate links to set,an empty list or null if none. |
setAuthors | public void setAuthors(List authors)(Code) | | Sets the author of the entry.
Parameters: author - the author of the entry, null if none. |
setCategories | public void setCategories(List categories)(Code) | | Set the categories
Parameters: categories - The categories to set. since: Atom 1.0 |
setContents | public void setContents(List contents)(Code) | | Sets the entry contents.
Parameters: contents - the list of Content elements with the entry contents to set,an empty list or null if none. |
setContributors | public void setContributors(List contributors)(Code) | | Sets the entry contributors.
Parameters: contributors - the list of Person elements with the entry contributors to set,an empty list or null if none. |
setCreated | public void setCreated(Date created)(Code) | | Sets the entry created date (Atom 0.3 only)
Parameters: created - the entry created date, null if none. |
setForeignMarkup | public void setForeignMarkup(Object foreignMarkup)(Code) | | Sets foreign markup found at entry level.
Parameters: foreignMarkup - Opaque object to discourage use |
setId | public void setId(String id)(Code) | | Sets the entry ID.
Parameters: id - the entry ID, null if none. |
setIssued | public void setIssued(Date issued)(Code) | | Sets the entry issued date (Atom 0.3, maps to
setPublished() ).
Parameters: issued - the entry issued date, null if none. |
setModified | public void setModified(Date modified)(Code) | | Sets the entry modified date (Atom 0.3, maps to
setUpdated() ).
Parameters: modified - the entry modified date, null if none. |
setModules | public void setModules(List modules)(Code) | | Sets the entry modules.
Parameters: modules - the list of ModuleImpl elements with the entry modules to set,an empty list or null if none. |
setOtherLinks | public void setOtherLinks(List otherLinks)(Code) | | Sets the entry non-alternate links.
Parameters: otherLinks - the list Link elements with the entry non-alternate links to set,an empty list or null if none. |
setPublished | public void setPublished(Date published)(Code) | | Set the published
Parameters: published - The published to set. since: Atom 1.0 |
setRights | public void setRights(String rights)(Code) | | Set the rights
Parameters: rights - The rights to set. since: Atom 1.0 |
setSource | public void setSource(Feed source)(Code) | | Set the source
Parameters: source - The source to set. |
setSummary | public void setSummary(Content summary)(Code) | | Sets the entry summary.
Parameters: summary - the entry summary, null if none. |
setTitle | public void setTitle(String title)(Code) | | Sets the entry title.
Parameters: title - the entry title, null if none. |
setTitleEx | public void setTitleEx(Content title)(Code) | | Sets the entry title as a text construct.
Parameters: title - the entry title, null if none. |
setUpdated | public void setUpdated(Date updated)(Code) | | Set the updated
Parameters: updated - The updated to set. since: Atom 1.0 |
setXmlBase | public void setXmlBase(String xmlBase)(Code) | | Set the xmlBase
Parameters: xmlBase - The xmlBase to set. since: Atom 1.0 |
toString | public String toString()(Code) | | Returns the String representation for the object.
String representation for the object. |
|
|