protected abstract class Operator.NoBlockingAction extends java.lang.Object implements Action
Constructor and Description |
---|
Operator.NoBlockingAction(java.lang.String description)
Constructs a NoBlockingAction object.
|
Modifier and Type | Method and Description |
---|---|
abstract java.lang.Object |
doAction(java.lang.Object param)
Performs a mapping action.
|
java.lang.String |
getDescription()
Returns the description value.
|
java.lang.Exception |
getException()
Returns an exception occured diring the action execution.
|
java.lang.Object |
launch(java.lang.Object param)
Executes this action.
|
protected void |
setException(java.lang.Exception e)
Specifies the exception.
|
public Operator.NoBlockingAction(java.lang.String description)
description
- an action description.public final java.lang.Object launch(java.lang.Object param)
Action
launch
in interface Action
param
- 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 java.lang.Object doAction(java.lang.Object param)
param
- an action parameter.public java.lang.String getDescription()
Action
getDescription
in interface Action
protected void setException(java.lang.Exception e)
e
- an exception.getException()
public java.lang.Exception getException()
setException(java.lang.Exception)