Packagejp.progression.commands
Classpublic final class CommandInterruptType

CommandInterruptType クラスは、Command クラスの interrupt() メソッドを実行した際の中断方法を示す値を提供します。


Example
  

See also

jp.progression.commands.Command.interruptType


Public Constants
 ConstantDefined by
  ABORT : int = 1
[static] コマンド中断時、その時点の状態で停止するように指定します。
CommandInterruptType
  RESTORE : int = 0
[static] コマンド中断時、処理が実行される以前の状態に戻すように指定します。
CommandInterruptType
  SKIP : int = 2
[static] コマンド中断時、処理が完了された状態と同様になるように指定します。
CommandInterruptType
Constant detail
ABORTconstant
public static const ABORT:int = 1

コマンド中断時、その時点の状態で停止するように指定します。

RESTOREconstant 
public static const RESTORE:int = 0

コマンド中断時、処理が実行される以前の状態に戻すように指定します。

SKIPconstant 
public static const SKIP:int = 2

コマンド中断時、処理が完了された状態と同様になるように指定します。