com.change_vision.jude.api.inf.model
インタフェース IState

com.change_vision.jude.api.inf.model.IState
すべてのスーパーインタフェース:
IElement, IHyperlinkOwner, INamedElement, IVertex
すべての実装されたインタフェース:
IElement, IHyperlinkOwner, INamedElement, IVertex
既知の実装クラスの一覧:
IFinalState

public IState
extends IVertex

状態に対するインターフェース。


フィールドの概要
 
クラス com.change_vision.jude.api.inf.model.INamedElement から継承されたフィールド
PACKAGE_VISIBILITY, PRIVATE_VISIBILITY, PROTECTED_VISIBILITY, PUBLIC_VISIBILITY
 
メソッドの概要
abstract  String getDoActivity()
          実行活動を取得します。
abstract  String getEntry()
          入状動作を取得します。
abstract  String getExit()
          退場動作を取得します。
abstract  ITransition[] getInternalTransitions()
          内部遷移配列を取得します。
abstract  Rectangle2D getRegionRectangle(int regionIndex)
          指定領域の矩形を取得します。
abstract  int getRegionSize()
          領域のサイズを取得します。
abstract  IStateMachine getSubmachine()
          状態マシンを取得します。
abstract  IVertex[] getSubvertexes()
          子のVertex配列を取得します。
abstract  IVertex[] getSubvertexes(int regionIndex)
          指定領域の子のVertex配列を取得します。
abstract  boolean isSubmachineState()
          サブマシン状態であるか確認します。
 
クラス com.change_vision.jude.api.inf.model.IVertex から継承されたメソッド
getIncomings, getOutgoings
 
クラス com.change_vision.jude.api.inf.model.INamedElement から継承されたメソッド
getAlias1, getAlias2, getClientDependencies, getClientRealizations, getClientUsages, getConstraints, getDefinition, getDiagrams, getName, getSupplierDependencies, getSupplierRealizations, getSupplierUsages, isPackageVisibility, isPrivateVisibility, isProtectedVisibility, isPublicVisibility, setAlias1, setAlias2, setDefinition, setName, setVisibility
 
クラス com.change_vision.jude.api.inf.model.IElement から継承されたメソッド
addStereotype, getComments, getContainer, getContainers, getId, getOwner, getPresentations, getStereotypes, getTaggedValues, getTypeModifier, isReadOnly, removeStereotype, setTypeModifier
 
クラス com.change_vision.jude.api.inf.model.IHyperlinkOwner から継承されたメソッド
createElementHyperlink, createFileHyperlink, createURLHyperlink, deleteHyperlink, getHyperlinks
 

メソッドの詳細

getSubmachine

abstract IStateMachine getSubmachine()
状態マシンを取得します。

戻り値:
状態マシン。

isSubmachineState

abstract boolean isSubmachineState()
サブマシン状態であるか確認します。

戻り値:
true サブマシン状態です / false サブマシン状態ではありません

getEntry

abstract String getEntry()
入状動作を取得します。

戻り値:
入状動作。

getDoActivity

abstract String getDoActivity()
実行活動を取得します。

戻り値:
実行活動。

getExit

abstract String getExit()
退場動作を取得します。

戻り値:
退場動作。

getInternalTransitions

abstract ITransition[] getInternalTransitions()
内部遷移配列を取得します。

戻り値:
内部遷移配列。ない場合、長さ0の配列を返します。

getSubvertexes

abstract IVertex[] getSubvertexes()
子のVertex配列を取得します。

戻り値:
子のVertex配列。ない場合、長さ0の配列を返します。

getRegionSize

abstract int getRegionSize()
領域のサイズを取得します。

戻り値:
領域のサイズ。

getRegionRectangle

abstract Rectangle2D getRegionRectangle(int regionIndex)
指定領域の矩形を取得します。

パラメータ:
regionIndex - 指定領域のインデックス
戻り値:
指定領域の矩形
例外:
InvalidUsingException - 例外が発生した場合
Keys:
          ILLEGAL_PARAMETER_KEY - regionIndexが正しくない場合
Values:
          例外のエラーメッセージ

getSubvertexes

abstract IVertex[] getSubvertexes(int regionIndex)
指定領域の子のVertex配列を取得します。

パラメータ:
regionIndex - 指定領域のインデックス
戻り値:
指定領域の子のVertex配列。子のVertex配列がない場合、長さ0の配列を返します。
例外:
InvalidUsingException - 例外が発生した場合
Keys:
          ILLEGAL_PARAMETER_KEY - regionIndexが正しくない場合
Values:
          例外のエラーメッセージ