| java.lang.Object org.eclipse.pde.internal.ui.tests.macro.StopAction
Constructor Summary | |
public | StopAction() The constructor. |
Method Summary | |
public void | dispose() We can use this method to dispose of any system
resources we previously allocated. | public void | init(IWorkbenchWindow window) We will cache window object in order to
be able to provide parent shell for the message dialog. | public void | recordingInterrupted(int type) | public void | recordingStarted() | public void | recordingStopped() | public void | run(IAction action) The action has been activated. | public void | selectionChanged(IAction action, ISelection selection) Selection in the workbench has been changed. |
StopAction | public StopAction()(Code) | | The constructor.
|
dispose | public void dispose()(Code) | | We can use this method to dispose of any system
resources we previously allocated.
See Also: IWorkbenchWindowActionDelegate.dispose |
init | public void init(IWorkbenchWindow window)(Code) | | We will cache window object in order to
be able to provide parent shell for the message dialog.
See Also: IWorkbenchWindowActionDelegate.init |
recordingInterrupted | public void recordingInterrupted(int type)(Code) | | |
recordingStarted | public void recordingStarted()(Code) | | |
recordingStopped | public void recordingStopped()(Code) | | |
run | public void run(IAction action)(Code) | | The action has been activated. The argument of the
method represents the 'real' action sitting
in the workbench UI.
See Also: IWorkbenchWindowActionDelegate.run |
selectionChanged | public void selectionChanged(IAction action, ISelection selection)(Code) | | Selection in the workbench has been changed. We
can change the state of the 'real' action here
if we want, but this can only happen after
the delegate has been created.
See Also: IWorkbenchWindowActionDelegate.selectionChanged |
|
|