Package jp.vmi.selenium.selenese.command
Interface BlockStart
- All Known Subinterfaces:
StartLoop
- All Known Implementing Classes:
BlockStartImpl,Do,Else,ElseIf,ForEach,If,StartLoopImpl,StoreFor,Times,While
public interface BlockStart
Interface for beginning-of-block commands.
-
Field Summary
Fields Modifier and Type Field Description static BlockStartNO_BLOCK_STARTUse NO_START_LOOP instaed of null.static StringREACHED_COUNT_SEPARATORThe separator of reached counts. -
Method Summary
Modifier and Type Method Description default booleanisLoopBlock()True if the block is loop.voidsetBlockEnd(BlockEnd blockEnd)Set end-of-block command.
-
Field Details
-
NO_BLOCK_START
Use NO_START_LOOP instaed of null. -
REACHED_COUNT_SEPARATOR
The separator of reached counts.- See Also:
- Constant Field Values
-
-
Method Details
-
isLoopBlock
default boolean isLoopBlock()True if the block is loop.- Returns:
- true if the block is loop
-
setBlockEnd
Set end-of-block command.- Parameters:
blockEnd- end-of-block command.
-