protected abstract class Operator.NoBlockingAction extends Object implements Action
| Constructor and Description |
|---|
NoBlockingAction(String description)
Constructs a NoBlockingAction object.
|
| Modifier and Type | Method and Description |
|---|---|
abstract Object |
doAction(Object param)
Performs a mapping action.
|
String |
getDescription()
Returns the description value.
|
Exception |
getException()
Returns an exception occured diring the action execution.
|
Object |
launch(Object param)
Executes this action.
|
protected void |
setException(Exception e)
Specifies the exception.
|
public NoBlockingAction(String description)
description - an action description.public final Object launch(Object param)
Actionlaunch in interface Actionparam - action argument. This argument might be the method
parameter in an invocation of
ActionProducer.produceAction(Object). This argument
might be a java.lang.String[] that lists the
command line arguments used to execute a test (or not).public abstract Object doAction(Object param)
param - an action parameter.public String getDescription()
ActiongetDescription in interface Actionprotected void setException(Exception e)
e - an exception.getException()public Exception getException()
setException(java.lang.Exception)