Package com.iizigo.editor
Interface IPartExtensionIZ
-
- All Known Implementing Classes:
PartExtensionIZ
public interface IPartExtensionIZ
Workbench part required to be implemented for parts by actions, and other items. The PropEditorPart implements it.- Author:
- Christopher Mindus
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addPartListener(org.eclipse.ui.IPartListener listener)
Adds a part listener.org.eclipse.ui.IActionBars
getActionBars()
Gets the action bars (different for View and Editor).org.eclipse.ui.IPartListener[]
getPartListeners()
Gets the part listeners.org.eclipse.ui.IWorkbenchPart
getWorkbenchPart()
Gets the workbench part.boolean
isDisposed()
Checks if the part is disposed of.void
removePartListener(org.eclipse.ui.IPartListener listener)
Removes a part listener.
-
-
-
Method Detail
-
addPartListener
void addPartListener(org.eclipse.ui.IPartListener listener)
Adds a part listener. Part that added as listeners in this method are called with the dispose method if they are instances of:- RetargetAction
-
removePartListener
void removePartListener(org.eclipse.ui.IPartListener listener)
Removes a part listener.
-
getPartListeners
org.eclipse.ui.IPartListener[] getPartListeners()
Gets the part listeners. The return value is cached and very efficient in terms of memory allocation.
-
getWorkbenchPart
org.eclipse.ui.IWorkbenchPart getWorkbenchPart()
Gets the workbench part.
-
getActionBars
org.eclipse.ui.IActionBars getActionBars()
Gets the action bars (different for View and Editor).
-
isDisposed
boolean isDisposed()
Checks if the part is disposed of.
-
-