com.infoteria.asteria.flowlibrary2.property
Class DateProperty

java.lang.Object
  |
  +--com.infoteria.asteria.flowlibrary2.property.ValueProperty
        |
        +--com.infoteria.asteria.flowlibrary2.property.DateProperty
All Implemented Interfaces:
Cloneable, Property

public class DateProperty
extends ValueProperty

Date型のプロパティクラスです。


Constructor Summary
DateProperty(String name)
          DateProperty(name, false, true, null) と同じです。
DateProperty(String name, boolean required)
          DateProperty(name, required, true, null) と同じです。
DateProperty(String name, boolean required, boolean mapable)
          DateProperty(name, required, mapable, null) と同じです。
DateProperty(String name, boolean required, boolean mapable, Date value)
          コンストラクタ
 
Method Summary
 Date dateValue()
          プロパティ値を返します。
 void setValue(Date value)
          プロパティ値を設定します。
 
Methods inherited from class com.infoteria.asteria.flowlibrary2.property.ValueProperty
assign, clone, getName, getType, getValue, getValueType, init, isMapable, isNull, isRequired, resetMacro, setRequired, setString, toString
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DateProperty

public DateProperty(String name)
DateProperty(name, false, true, null) と同じです。

DateProperty

public DateProperty(String name,
                    boolean required)
DateProperty(name, required, true, null) と同じです。

DateProperty

public DateProperty(String name,
                    boolean required,
                    boolean mapable)
DateProperty(name, required, mapable, null) と同じです。

DateProperty

public DateProperty(String name,
                    boolean required,
                    boolean mapable,
                    Date value)
コンストラクタ
Parameters:
name - プロパティ名
required - このプロパティが必須プロパティの場合はtrue
mapable - このプロパティがMapping可能な場合はtrue
value - デフォルト値
Method Detail

dateValue

public Date dateValue()
プロパティ値を返します。

setValue

public void setValue(Date value)
プロパティ値を設定します。