Class NoOp
- java.lang.Object
-
- jp.vmi.selenium.selenese.subcommand.AbstractSubCommand<Void>
-
- jp.vmi.selenium.selenese.subcommand.NoOp
-
- All Implemented Interfaces:
ArgumentInfo,ISubCommand<Void>
public class NoOp extends AbstractSubCommand<Void>
No operation.
-
-
Constructor Summary
Constructors Constructor Description NoOp(String name, ArgumentType... argTypes)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Voidexecute(Context context, String... curArgs)Execute sub command.StringgetName()Get sub-command name.-
Methods inherited from class jp.vmi.selenium.selenese.subcommand.AbstractSubCommand
getArgumentTypes
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface jp.vmi.selenium.selenese.ArgumentInfo
getArgumentCount
-
-
-
-
Constructor Detail
-
NoOp
public NoOp(String name, ArgumentType... argTypes)
Constructor.- Parameters:
name- sub-command name.argTypes- argument types of this sub-command.
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:ISubCommandGet sub-command name.- Specified by:
getNamein interfaceISubCommand<Void>- Overrides:
getNamein classAbstractSubCommand<Void>- Returns:
- sub-command name.
-
execute
public Void execute(Context context, String... curArgs)
Description copied from interface:ISubCommandExecute sub command.- Parameters:
context- Selenese Runner context.curArgs- arguments.- Returns:
- sub command result.
-
-