com.sun.syndication.feed.rss
public class TextInput extends Object implements Cloneable, Serializable
| Field Summary | |
|---|---|
| String | _description |
| String | _link |
| String | _name |
| ObjectBean | _objBean |
| String | _title |
| Constructor Summary | |
|---|---|
| TextInput()
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 text input description.
|
| String | getLink()
Returns the text input link.
|
| String | getName()
Returns the text input name.
|
| String | getTitle()
Returns the text input title.
|
| int | hashCode()
Returns a hashcode value for the object.
|
| void | setDescription(String description)
Sets the text input description.
|
| void | setLink(String link)
Sets the text input link.
|
| void | setName(String name)
Sets the text input name.
|
| void | setTitle(String title)
Sets the text input title.
|
| 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 text input description, null if none.
Returns: the text input link, null if none.
Returns: the text input name, null if none.
Returns: the text input title, null if none.
It follows the contract defined by the Object hashCode() method.
Returns: the hashcode of the bean object.
Parameters: description the text input description to set, null if none.
Parameters: link the text input link to set, null if none.
Parameters: name the text input name to set, null if none.
Parameters: title the text input title to set, null if none.
Returns: String representation for the object.