/* [<][>][^][v][top][bottom][index][help] */
DEFINITIONS
This source file includes following definitions.
- SteppingParameter
- getStepCount
- setStepDone
- setStepResult
package jp.ac.nime.computer.grpsimulator;
/** 画像計測の時にステップ実行をサポートする為に必要なインターフェイス
*
* @author igarashi
* @version 1.0.0
*/
public interface SteppingParameter extends ParameterSetting {
/** 現在のステップ数を返す
* @return 現在のステップ数。-1はステップが完了している事を表す。
*/
int getStepCount();
/** ステップがすべて完了した
*/
void setStepDone();
/** ステップごとの処理結果
*/
void setStepResult(Object obj);
}