Interface IApplicationEditorTask
- 
 public interface IApplicationEditorTaskThe application editor task.- Since:
- 1.0.0
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StringgetName()Returns the localized name of the task.booleanisUndoable()Returnstrueif task can be undone.default voidredo(org.eclipse.core.runtime.IProgressMonitor monitor)Redoes the taskvoidrun(org.eclipse.core.runtime.IProgressMonitor monitor)Runs the task.voidundo(org.eclipse.core.runtime.IProgressMonitor monitor)Undoes the task.
 
- 
- 
- 
Method Detail- 
getNameString getName() Returns the localized name of the task.- Returns:
- the localized name of the task, never null.
 
 - 
runvoid run(org.eclipse.core.runtime.IProgressMonitor monitor) Runs the task.- Parameters:
- monitor- the progress monitor, cannot be- null.
 
 - 
isUndoableboolean isUndoable() Returnstrueif task can be undone.- Returns:
- trueif task can be undone,- false- otherwise.
 
 - 
undovoid undo(org.eclipse.core.runtime.IProgressMonitor monitor) Undoes the task.- Parameters:
- monitor- the progress monitor, cannot be- null.
 
 - 
redodefault void redo(org.eclipse.core.runtime.IProgressMonitor monitor) Redoes the task- Parameters:
- monitor- the progress monitor, cannot be- null.
 
 
- 
 
-