com.sun.syndication.feed.rss
public class Image extends Object implements Cloneable, Serializable
Field Summary | |
---|---|
String | _description |
int | _height |
String | _link |
ObjectBean | _objBean |
String | _title |
String | _url |
int | _width |
Constructor Summary | |
---|---|
Image()
Default constructor. |
Method Summary | |
---|---|
Object | clone()
Creates a deep 'bean' clone of the object.
|
boolean | equals(Object other)
Indicates whether some other object is "equal to" this one as defined by the Object equals() method.
|
String | getDescription()
Returns the image description.
|
int | getHeight()
Returns the image height.
|
String | getLink()
Returns the image link.
|
String | getTitle()
Returns the image title.
|
String | getUrl()
Returns the image URL.
|
int | getWidth()
Returns the image width.
|
int | hashCode()
Returns a hashcode value for the object.
|
void | setDescription(String description)
Sets the image description.
|
void | setHeight(int height)
Sets the image height.
|
void | setLink(String link)
Sets the image link.
|
void | setTitle(String title)
Sets the image title.
|
void | setUrl(String url)
Sets the image URL.
|
void | setWidth(int width)
Sets the image width.
|
String | toString()
Returns the String representation for the object.
|
Returns: a clone of the object.
Throws: CloneNotSupportedException thrown if an element of the object cannot be cloned.
Parameters: other he reference object with which to compare.
Returns: true if 'this' object is equal to the 'other' object.
Returns: the image description, null if none.
Returns: the image height, null if none.
Returns: the image link, null if none.
Returns: the image title, null if none.
Returns: the image URL, null if none.
Returns: the image width, null if none.
It follows the contract defined by the Object hashCode() method.
Returns: the hashcode of the bean object.
Parameters: description the image description to set, null if none.
Parameters: height the image height to set, null if none.
Parameters: link the image link to set, null if none.
Parameters: title the image title to set, null if none.
Parameters: url the image URL to set, null if none.
Parameters: width the image width to set, null if none.
Returns: String representation for the object.