Class SideCommand
- java.lang.Object
-
- jp.vmi.selenium.runner.model.side.SideCommand
-
-
Constructor Summary
Constructors Constructor Description SideCommand(boolean isGen)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCommand()Get command name.StringgetComment()Get comment.StringgetId()Get id.StringgetTarget()Get target.List<List<String>>getTargets()StringgetValue()Get value.StringgetWindowHandleName()Get window handle name for opening window.longgetWindowTimeout()Get window timeoue.booleanisBreakpoint()Check breakpoint at this command.booleanisOpensWindow()Check this command opens window.booleanisOpensWindowRead()???voidsetBreakpoint(boolean isBreakpoint)voidsetCommand(String command)voidsetComment(String comment)voidsetId(String id)voidsetOpensWindow(boolean opensWindow)voidsetOpensWindowRead(boolean opensWindowRead)voidsetTarget(String target)voidsetTargets(List<List<String>> targets)voidsetValue(String value)voidsetWindowHandleName(String windowHandleName)voidsetWindowTimeout(long windowTimeout)
-
-
-
Method Detail
-
setId
public void setId(String id)
-
getComment
public String getComment()
Description copied from interface:ICommandGet comment.- Specified by:
getCommentin interfaceICommand- Returns:
- comment.
-
setComment
public void setComment(String comment)
-
getCommand
public String getCommand()
Description copied from interface:ICommandGet command name.- Specified by:
getCommandin interfaceICommand- Returns:
- command name.
-
setCommand
public void setCommand(String command)
-
setTarget
public void setTarget(String target)
-
setValue
public void setValue(String value)
-
isBreakpoint
public boolean isBreakpoint()
Description copied from interface:ICommandCheck breakpoint at this command.- Specified by:
isBreakpointin interfaceICommand- Returns:
- true if breakpoint.
-
setBreakpoint
public void setBreakpoint(boolean isBreakpoint)
-
isOpensWindow
public boolean isOpensWindow()
Description copied from interface:ICommandCheck this command opens window.- Specified by:
isOpensWindowin interfaceICommand- Returns:
- true if open window.
-
setOpensWindow
public void setOpensWindow(boolean opensWindow)
-
getWindowHandleName
public String getWindowHandleName()
Description copied from interface:ICommandGet window handle name for opening window.- Specified by:
getWindowHandleNamein interfaceICommand- Returns:
- window handle name.
-
setWindowHandleName
public void setWindowHandleName(String windowHandleName)
-
getWindowTimeout
public long getWindowTimeout()
Description copied from interface:ICommandGet window timeoue.- Specified by:
getWindowTimeoutin interfaceICommand- Returns:
- timeout (ms).
-
setWindowTimeout
public void setWindowTimeout(long windowTimeout)
-
isOpensWindowRead
public boolean isOpensWindowRead()
Description copied from interface:ICommand???- Specified by:
isOpensWindowReadin interfaceICommand- Returns:
- ???
-
setOpensWindowRead
public void setOpensWindowRead(boolean opensWindowRead)
-
-