Class SideCommandSignature
- java.lang.Object
-
- jp.vmi.selenium.runner.model.side.SideCommandSignature
-
- All Implemented Interfaces:
ICommandSignature
public class SideCommandSignature extends Object implements ICommandSignature
Side command information.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Get description.StringgetId()Get id.StringgetName()Get human readable name.ArgTypesgetTargetType()Get type of target.ArgTypesgetValueType()Get type of value.-
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.runner.model.ICommandSignature
isTargetScript, isValueScript
-
-
-
-
Method Detail
-
getId
public String getId()
Description copied from interface:ICommandSignatureGet id.- Specified by:
getIdin interfaceICommandSignature- Returns:
- id
-
getName
public String getName()
Description copied from interface:ICommandSignatureGet human readable name.- Specified by:
getNamein interfaceICommandSignature- Returns:
- name
-
getDescription
public String getDescription()
Description copied from interface:ICommandSignatureGet description.- Specified by:
getDescriptionin interfaceICommandSignature- Returns:
- descripton
-
getTargetType
public ArgTypes getTargetType()
Description copied from interface:ICommandSignatureGet type of target.- Specified by:
getTargetTypein interfaceICommandSignature- Returns:
- type of target
-
getValueType
public ArgTypes getValueType()
Description copied from interface:ICommandSignatureGet type of value.- Specified by:
getValueTypein interfaceICommandSignature- Returns:
- type of value.
-
-