com.sun.syndication.feed.rss
クラス TextInput

java.lang.Object
  上位を拡張 com.sun.syndication.feed.rss.TextInput
すべての実装されたインタフェース:
java.io.Serializable, java.lang.Cloneable

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

Bean for text input of RSS feeds.

関連項目:
直列化された形式

コンストラクタの概要
TextInput()
          Default constructor.
 
メソッドの概要
 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.
 
クラス java.lang.Object から継承されたメソッド
finalize, getClass, notify, notifyAll, wait, wait, wait
 

コンストラクタの詳細

TextInput

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

メソッドの詳細

clone

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

オーバーライド:
クラス java.lang.Object 内の clone
戻り値:
a clone of the object.
例外:
java.lang.CloneNotSupportedException - thrown if an element of the object cannot be cloned.

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.

オーバーライド:
クラス java.lang.Object 内の equals
パラメータ:
other - he reference object with which to compare.
戻り値:
true if 'this' object is equal to the 'other' object.

hashCode

public int hashCode()
Returns a hashcode value for the object.

It follows the contract defined by the Object hashCode() method.

オーバーライド:
クラス java.lang.Object 内の hashCode
戻り値:
the hashcode of the bean object.

toString

public java.lang.String toString()
Returns the String representation for the object.

オーバーライド:
クラス java.lang.Object 内の toString
戻り値:
String representation for the object.

getTitle

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

戻り値:
the text input title, null if none.

setTitle

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

パラメータ:
title - the text input title to set, null if none.

getDescription

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

戻り値:
the text input description, null if none.

setDescription

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

パラメータ:
description - the text input description to set, null if none.

getName

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

戻り値:
the text input name, null if none.

setName

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

パラメータ:
name - the text input name to set, null if none.

getLink

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

戻り値:
the text input link, null if none.

setLink

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

パラメータ:
link - the text input link to set, null if none.