com.sun.syndication.feed.rss
public class Source extends Object implements Cloneable, Serializable
| Field Summary | |
|---|---|
| ObjectBean | _objBean |
| String | _url |
| String | _value |
| Constructor Summary | |
|---|---|
| Source()
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 | getUrl()
Returns the source URL.
|
| String | getValue()
Returns the source value.
|
| int | hashCode()
Returns a hashcode value for the object.
|
| void | setUrl(String url)
Sets the source URL.
|
| void | setValue(String value)
Sets the source value.
|
| 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 source URL, null if none.
Returns: the source value, null if none.
It follows the contract defined by the Object hashCode() method.
Returns: the hashcode of the bean object.
Parameters: url the source URL to set, null if none.
Parameters: value the source value to set, null if none.
Returns: String representation for the object.