| org.eclipse.pde.internal.ui.tests.macro.IIndexHandler
All known Subclasses: org.eclipse.pde.internal.ui.tests.macro.DefaultIndexHandler,
IIndexHandler | public interface IIndexHandler (Code) | | Classes that implement this interface are registered with
the macro manager to handle cases where the user interrupted
the recording process to insert a named index. Upon playback,
index handler will be called to handle the named index
when reached in the script.
since: 3.1 |
Method Summary | |
IStatus | processIndex(Shell shell, String indexId) Evaluates the state of the platform at the provided script
index. |
processIndex | IStatus processIndex(Shell shell, String indexId)(Code) | | Evaluates the state of the platform at the provided script
index. Error status returned from the method will cause
the script manager to stop the script execution and
throw a CoreException .
Parameters: shell - the active shell when the index was reached Parameters: indexId - the unique identifier of the indexinserted in the script Status.OK_STATUS if the script can proceed, or an error status otherwise. |
|
|