jp.ne.mki.wedge.run.client.event
インタフェース ExecutionHookInterface

すべてのスーパーインタフェース:
java.util.EventListener
既知の実装クラスの一覧:
DefaultDebugger, ItemImpExp

public interface ExecutionHookInterface
extends java.util.EventListener

実行リストHooker

実行リストの処理を開始する前、後にてイベントをトリガーするクラスです。
Manager毎(画面毎)にインスタンスを持ちます。
ClientManagerInterface#addExecutionHooker にて設定してください。

バージョン:
1.2
関連項目:
ClientManagerInterface.addExecutionHooker(ExecutionHookInterface)

メソッドの概要
 void executeAfter(ExecutionInterface execution, int index, int resultCode)
          処理開始後
 void executeBefore(ExecutionInterface execution, int index, int skipCount)
          処理開始前
 void startUp(ExecutionListInterface executions, javax.swing.JComponent currentComp, ClientManagerInterface manager)
          実行リスト開始時
 void tearDown(ExecutionListInterface executions, int result, ClientManagerInterface manager)
          実行リスト終了時
 

メソッドの詳細

startUp

void startUp(ExecutionListInterface executions,
             javax.swing.JComponent currentComp,
             ClientManagerInterface manager)
実行リスト開始時

パラメータ:
executions - 実行リスト
currentComp - 処理中のコンポーネント
manager - ClientManagerInterface

executeBefore

void executeBefore(ExecutionInterface execution,
                   int index,
                   int skipCount)
処理開始前

パラメータ:
execution - 実行オブジェクト
index - 実行時のインデックス
skipCount - Skip数

executeAfter

void executeAfter(ExecutionInterface execution,
                  int index,
                  int resultCode)
処理開始後

パラメータ:
execution - 実行オブジェクト
index - 実行時のインデックス
resultCode - 戻り値

tearDown

void tearDown(ExecutionListInterface executions,
              int result,
              ClientManagerInterface manager)
実行リスト終了時

パラメータ:
executions - 実行リスト
result - 戻り値
manager -