Package jp.vmi.selenium.selenese
Interface FlowControlState
-
public interface FlowControlStateInterface of flow control state.
-
-
Field Summary
Fields Modifier and Type Field Description static FlowControlStateCONTINUED_STATEState that this block is not finished yet.static FlowControlStateFINISHED_STATEState that this block is finished.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisAlreadyFinished()True if block is already finished.
-
-
-
Field Detail
-
FINISHED_STATE
static final FlowControlState FINISHED_STATE
State that this block is finished.
-
CONTINUED_STATE
static final FlowControlState CONTINUED_STATE
State that this block is not finished yet.
-
-