| java.lang.Object com.sun.syndication.feed.synd.SyndContentImpl
SyndContentImpl | public class SyndContentImpl implements Serializable,SyndContent(Code) | | Bean for content of SyndFeedImpl entries.
author: Alejandro Abdelnur |
Method Summary | |
public Object | clone() Creates a deep 'bean' clone of the object. | public void | copyFrom(Object obj) | public boolean | equals(Object other) 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. | public Class | getInterface() | public String | getMode() Returns the content mode. | public String | getType() Returns the content type. | public String | getValue() Returns the content value. | public int | hashCode() Returns a hashcode value for the object. | public void | setMode(String mode) Sets the content mode. | public void | setType(String type) Sets the content type. | public void | setValue(String value) Sets the content value. | public String | toString() Returns the String representation for the object. |
SyndContentImpl | public SyndContentImpl()(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. |
getMode | public String getMode()(Code) | | Returns the content mode.
the content mode, null if none. |
getType | public 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 | public String getValue()(Code) | | Returns the content value.
the content value, null if none. |
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. |
setMode | public void setMode(String mode)(Code) | | Sets the content mode.
Parameters: type - the content mode to set, null if none. |
setType | public 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 | public void setValue(String value)(Code) | | Sets the content value.
Parameters: value - the content value to set, null if none. |
toString | public String toString()(Code) | | Returns the String representation for the object.
String representation for the object. |
|
|