com.sun.syndication.feed.synd
インタフェース SyndImage

すべてのスーパーインタフェース:
java.lang.Cloneable, CopyFrom
既知の実装クラスの一覧:
SyndImageImpl

public interface SyndImage
extends java.lang.Cloneable, CopyFrom

Bean interface for images of SyndFeedImpl feeds.


メソッドの概要
 java.lang.Object clone()
          Creates a deep clone of the object.
 java.lang.String getDescription()
          Returns the image description.
 java.lang.String getLink()
          Returns the image link.
 java.lang.String getTitle()
          Returns the image title.
 java.lang.String getUrl()
          Returns the image URL.
 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.
 
インタフェース com.sun.syndication.feed.CopyFrom から継承されたメソッド
copyFrom, getInterface
 

メソッドの詳細

getTitle

java.lang.String getTitle()
Returns the image title.

戻り値:
the image title, null if none.

setTitle

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

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

getUrl

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

戻り値:
the image URL, null if none.

setUrl

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

パラメータ:
url - the image URL to set, null if none.

getLink

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

戻り値:
the image link, null if none.

setLink

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

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

getDescription

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

戻り値:
the image description, null if none.

setDescription

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

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

clone

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

戻り値:
a clone of the object.
例外:
java.lang.CloneNotSupportedException - thrown if an element of the object cannot be cloned.