com.infoteria.asteria.flowlibrary2.property
Class BooleanProperty

java.lang.Object
  |
  +--com.infoteria.asteria.flowlibrary2.property.ValueProperty
        |
        +--com.infoteria.asteria.flowlibrary2.property.BooleanProperty
All Implemented Interfaces:
Cloneable, Property
Direct Known Subclasses:
UseConnectionProperty

public class BooleanProperty
extends ValueProperty

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


Constructor Summary
BooleanProperty(String name)
          BooleanProperty(name, false, true) と同じです。
BooleanProperty(String name, boolean required)
          BooleanProperty(name, required, true) と同じです。
BooleanProperty(String name, boolean required, boolean mapable)
          コンストラクタ
BooleanProperty(String name, boolean required, boolean mapable, boolean value)
          コンストラクタ
 
Method Summary
 boolean booleanValue()
          プロパティ値を返します。
 void setValue(boolean 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

BooleanProperty

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

BooleanProperty

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

BooleanProperty

public BooleanProperty(String name,
                       boolean required,
                       boolean mapable)
コンストラクタ
Parameters:
name - プロパティ名
required - このプロパティが必須プロパティの場合はtrue
mapable - このプロパティがMapping可能な場合はtrue

BooleanProperty

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

booleanValue

public boolean booleanValue()
プロパティ値を返します。

setValue

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