com.sun.syndication.feed.synd
クラス SyndImageImpl

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

public class SyndImageImpl
extends java.lang.Object
implements java.io.Serializable, SyndImage

Bean for images of SyndFeedImpl feeds.

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

コンストラクタの概要
SyndImageImpl()
          Default constructor.
 
メソッドの概要
 java.lang.Object clone()
          Creates a deep 'bean' clone of the object.
 void copyFrom(java.lang.Object syndImage)
          Copies all the properties of the given bean into this one.
 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 image description.
 java.lang.Class getInterface()
          Returns the interface the copyFrom works on.
 java.lang.String getLink()
          Returns the image link.
 java.lang.String getTitle()
          Returns the image title.
 java.lang.String getUrl()
          Returns the image URL.
 int hashCode()
          Returns a hashcode value for the object.
 void setDescription(java.lang.String description)
          Sets the image description.
 void setLink(java.lang.String link)
          Sets the image link.
 void setTitle(java.lang.String title)
          Sets the image title.
 void setUrl(java.lang.String url)
          Sets the image URL.
 java.lang.String toString()
          Returns the String representation for the object.
 
クラス java.lang.Object から継承されたメソッド
finalize, getClass, notify, notifyAll, wait, wait, wait
 

コンストラクタの詳細

SyndImageImpl

public SyndImageImpl()
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.

定義:
インタフェース SyndImage 内の clone
オーバーライド:
クラス 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 image title.

定義:
インタフェース SyndImage 内の getTitle
戻り値:
the image title, null if none.

setTitle

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

定義:
インタフェース SyndImage 内の setTitle
パラメータ:
title - the image title to set, null if none.

getUrl

public java.lang.String getUrl()
Returns the image URL.

定義:
インタフェース SyndImage 内の getUrl
戻り値:
the image URL, null if none.

setUrl

public void setUrl(java.lang.String url)
Sets the image URL.

定義:
インタフェース SyndImage 内の setUrl
パラメータ:
url - the image URL to set, null if none.

getLink

public java.lang.String getLink()
Returns the image link.

定義:
インタフェース SyndImage 内の getLink
戻り値:
the image link, null if none.

setLink

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

定義:
インタフェース SyndImage 内の setLink
パラメータ:
link - the image link to set, null if none.

getDescription

public java.lang.String getDescription()
Returns the image description.

定義:
インタフェース SyndImage 内の getDescription
戻り値:
the image description, null if none.

setDescription

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

定義:
インタフェース SyndImage 内の setDescription
パラメータ:
description - the image description to set, null if none.

getInterface

public java.lang.Class getInterface()
インタフェース CopyFrom の記述:
Returns the interface the copyFrom works on.

This is useful when dealing with properties that may have multiple implementations. For example, Module.

定義:
インタフェース CopyFrom 内の getInterface
戻り値:
the interface the copyFrom works on.

copyFrom

public void copyFrom(java.lang.Object syndImage)
インタフェース CopyFrom の記述:
Copies all the properties of the given bean into this one.

Any existing properties in this bean are lost.

This method is useful for moving from one implementation of a bean interface to another. For example from the default SyndFeed bean implementation to a Hibernate ready implementation.

定義:
インタフェース CopyFrom 内の copyFrom
パラメータ:
syndImage - the instance to copy properties from.