Package org.netbeans.jemmy
Interface Action
-
- All Known Subinterfaces:
WindowJob
- All Known Implementing Classes:
ActionProducer,Operator.NoBlockingAction,Test,WindowManager.ModalDialogChoosingJob
public interface ActionDefines an action to be executed byActionProducerinstance.- Author:
- Alexandre Iline (alexandre.iline@sun.com)
- See Also:
ActionProducer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDescription()Returns the description value.java.lang.Objectlaunch(java.lang.Object obj)Executes this action.
-
-
-
Method Detail
-
launch
java.lang.Object launch(java.lang.Object obj)
Executes this action.- Parameters:
obj- action argument. This argument might be the method parameter in an invocation ofActionProducer.produceAction(Object). This argument might be ajava.lang.String[]that lists the command line arguments used to execute a test (or not).- Returns:
- action result.
-
getDescription
java.lang.String getDescription()
Returns the description value.- Returns:
- Action description.
-
-