Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.sun.syndication.feed.rss
Class TextInput  view TextInput download TextInput.java

java.lang.Object
  extended bycom.sun.syndication.feed.rss.TextInput
All Implemented Interfaces:
java.lang.Cloneable, java.io.Serializable

public class TextInput
extends java.lang.Object
implements java.lang.Cloneable, java.io.Serializable

Bean for text input of RSS feeds.


Field Summary
private  java.lang.String _description
           
private  java.lang.String _link
           
private  java.lang.String _name
           
private  com.sun.syndication.feed.impl.ObjectBean _objBean
           
private  java.lang.String _title
           
 
Constructor Summary
TextInput()
          Default constructor.
 
Method Summary
 java.lang.Object clone()
          Creates a deep 'bean' clone of the object.
 boolean equals(java.lang.Object other)
          Indicates whether some other object is "equal to" this one as defined by the Object equals() method.
 java.lang.String getDescription()
          Returns the text input description.
 java.lang.String getLink()
          Returns the text input link.
 java.lang.String getName()
          Returns the text input name.
 java.lang.String getTitle()
          Returns the text input title.
 int hashCode()
          Returns a hashcode value for the object.
 void setDescription(java.lang.String description)
          Sets the text input description.
 void setLink(java.lang.String link)
          Sets the text input link.
 void setName(java.lang.String name)
          Sets the text input name.
 void setTitle(java.lang.String title)
          Sets the text input title.
 java.lang.String toString()
          Returns the String representation for the object.
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

_objBean

private com.sun.syndication.feed.impl.ObjectBean _objBean

_title

private java.lang.String _title

_description

private java.lang.String _description

_name

private java.lang.String _name

_link

private java.lang.String _link
Constructor Detail

TextInput

public TextInput()
Default constructor. All properties are set to null.

Method Detail

clone

public java.lang.Object clone()
                       throws java.lang.CloneNotSupportedException
Creates a deep 'bean' clone of the object.


equals

public boolean equals(java.lang.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 java.lang.String toString()
Returns the String representation for the object.


getTitle

public java.lang.String getTitle()
Returns the text input title.


setTitle

public void setTitle(java.lang.String title)
Sets the text input title.


getDescription

public java.lang.String getDescription()
Returns the text input description.


setDescription

public void setDescription(java.lang.String description)
Sets the text input description.


getName

public java.lang.String getName()
Returns the text input name.


setName

public void setName(java.lang.String name)
Sets the text input name.


getLink

public java.lang.String getLink()
Returns the text input link.


setLink

public void setLink(java.lang.String link)
Sets the text input link.