com.sun.syndication.feed.module
クラス SyModuleImpl

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

public class SyModuleImpl
extends ModuleImpl
implements SyModule

Syndication ModuleImpl, default implementation.

関連項目:
Syndication module., 直列化された形式

フィールドの概要
 
インタフェース com.sun.syndication.feed.module.SyModule から継承されたフィールド
DAILY, HOURLY, MONTHLY, URI, WEEKLY, YEARLY
 
コンストラクタの概要
SyModuleImpl()
          Default constructor.
 
メソッドの概要
 void copyFrom(java.lang.Object obj)
          Copies all the properties of the given bean into this one.
 java.lang.Class getInterface()
          Returns the interface the copyFrom works on.
 java.util.Date getUpdateBase()
          Returns the Syndication module update base date.
 int getUpdateFrequency()
          Returns the Syndication module update frequency.
 java.lang.String getUpdatePeriod()
          Returns the Syndication module update period.
 void setUpdateBase(java.util.Date updateBase)
          Sets the Syndication module update base date.
 void setUpdateFrequency(int updateFrequency)
          Sets the Syndication module update frequency.
 void setUpdatePeriod(java.lang.String updatePeriod)
          Sets the Syndication module update period.
 
クラス com.sun.syndication.feed.module.ModuleImpl から継承されたメソッド
clone, equals, getUri, hashCode, toString
 
クラス java.lang.Object から継承されたメソッド
finalize, getClass, notify, notifyAll, wait, wait, wait
 
インタフェース com.sun.syndication.feed.module.Module から継承されたメソッド
clone, getUri
 

コンストラクタの詳細

SyModuleImpl

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

メソッドの詳細

getUpdatePeriod

public java.lang.String getUpdatePeriod()
Returns the Syndication module update period.

定義:
インタフェース SyModule 内の getUpdatePeriod
戻り値:
the Syndication module update period, null if none.

setUpdatePeriod

public void setUpdatePeriod(java.lang.String updatePeriod)
Sets the Syndication module update period.

定義:
インタフェース SyModule 内の setUpdatePeriod
パラメータ:
updatePeriod - the Syndication module update period to set, null if none.

getUpdateFrequency

public int getUpdateFrequency()
Returns the Syndication module update frequency.

定義:
インタフェース SyModule 内の getUpdateFrequency
戻り値:
the Syndication module update frequency, null if none.

setUpdateFrequency

public void setUpdateFrequency(int updateFrequency)
Sets the Syndication module update frequency.

定義:
インタフェース SyModule 内の setUpdateFrequency
パラメータ:
updateFrequency - the Syndication module update frequency to set, null if none.

getUpdateBase

public java.util.Date getUpdateBase()
Returns the Syndication module update base date.

定義:
インタフェース SyModule 内の getUpdateBase
戻り値:
the Syndication module update base date, null if none.

setUpdateBase

public void setUpdateBase(java.util.Date updateBase)
Sets the Syndication module update base date.

定義:
インタフェース SyModule 内の setUpdateBase
パラメータ:
updateBase - the Syndication module update base date 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 obj)
インタフェース 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
パラメータ:
obj - the instance to copy properties from.