| com.sun.syndication.feed.synd.SyndContent
All known Subclasses: com.sun.syndication.feed.synd.SyndContentImpl,
SyndContent | public interface SyndContent extends Cloneable,CopyFrom(Code) | | Bean interface for content of SyndFeedImpl entries.
author: Alejandro Abdelnur |
getMode | String getMode()(Code) | | Sets the content mode (needed for Atom 0.3 support).
Parameters: type - the content type to set, null if none. |
getType | String getType()(Code) | | Returns the content type.
When used for the description of an entry, if null 'text/plain' must be assumed.
the content type, null if none. |
getValue | String getValue()(Code) | | Returns the content value.
the content value, null if none. |
setMode | void setMode(String mode)(Code) | | Sets the content mode (needed for Atom 0.3 support).
Parameters: type - the content type to set, null if none. |
setType | void setType(String type)(Code) | | Sets the content type.
When used for the description of an entry, if null 'text/plain' must be assumed.
Parameters: type - the content type to set, null if none. |
setValue | void setValue(String value)(Code) | | Sets the content value.
Parameters: value - the content value to set, null if none. |
|
|