Package com.rometools.rome.feed.rss
Class TextInput
- java.lang.Object
-
- com.rometools.rome.feed.rss.TextInput
-
- All Implemented Interfaces:
Serializable,Cloneable
public class TextInput extends Object implements Cloneable, Serializable
Bean for text input of RSS feeds.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TextInput()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectclone()Creates a deep 'bean' clone of the object.booleanequals(Object other)Indicates whether some other object is "equal to" this one as defined by the Object equals() method.StringgetDescription()Returns the text input description.StringgetLink()Returns the text input link.StringgetName()Returns the text input name.StringgetTitle()Returns the text input title.inthashCode()Returns a hashcode value for the object.voidsetDescription(String description)Sets the text input description.voidsetLink(String link)Sets the text input link.voidsetName(String name)Sets the text input name.voidsetTitle(String title)Sets the text input title.StringtoString()Returns the String representation for the object.
-
-
-
Method Detail
-
clone
public Object clone() throws CloneNotSupportedException
Creates a deep 'bean' clone of the object.- Overrides:
clonein classObject- Returns:
- a clone of the object.
- Throws:
CloneNotSupportedException- thrown if an element of the object cannot be cloned.
-
equals
public boolean equals(Object other)
Indicates whether some other object is "equal to" this one as defined by the Object equals() method.
-
hashCode
public int hashCode()
Returns a hashcode value for the object.It follows the contract defined by the Object hashCode() method.
-
toString
public String toString()
Returns the String representation for the object.
-
getTitle
public String getTitle()
Returns the text input title.- Returns:
- the text input title, null if none.
-
setTitle
public void setTitle(String title)
Sets the text input title.- Parameters:
title- the text input title to set, null if none.
-
getDescription
public String getDescription()
Returns the text input description.- Returns:
- the text input description, null if none.
-
setDescription
public void setDescription(String description)
Sets the text input description.- Parameters:
description- the text input description to set, null if none.
-
getName
public String getName()
Returns the text input name.- Returns:
- the text input name, null if none.
-
setName
public void setName(String name)
Sets the text input name.- Parameters:
name- the text input name to set, null if none.
-
getLink
public String getLink()
Returns the text input link.- Returns:
- the text input link, null if none.
-
setLink
public void setLink(String link)
Sets the text input link.- Parameters:
link- the text input link to set, null if none.
-
-