| com.sun.syndication.feed.synd.SyndImage
All known Subclasses: com.sun.syndication.feed.synd.SyndImageImpl,
SyndImage | public interface SyndImage extends Cloneable,CopyFrom(Code) | | Bean interface for images of SyndFeedImpl feeds.
author: Alejandro Abdelnur |
getDescription | String getDescription()(Code) | | Returns the image description.
the image description, null if none. |
getLink | String getLink()(Code) | | Returns the image link.
the image link, null if none. |
getTitle | String getTitle()(Code) | | Returns the image title.
the image title, null if none. |
getUrl | String getUrl()(Code) | | Returns the image URL.
the image URL, null if none. |
setDescription | void setDescription(String description)(Code) | | Sets the image description.
Parameters: description - the image description to set, null if none. |
setLink | void setLink(String link)(Code) | | Sets the image link.
Parameters: link - the image link to set, null if none. |
setTitle | void setTitle(String title)(Code) | | Sets the image title.
Parameters: title - the image title to set, null if none. |
setUrl | void setUrl(String url)(Code) | | Sets the image URL.
Parameters: url - the image URL to set, null if none. |
|
|