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 SummaryModifier and TypeMethodDescription- void- addPartListener- (org.eclipse.ui.IPartListener listener) Adds a part listener.- org.eclipse.ui.IActionBarsGets the action bars (different for View and Editor).- org.eclipse.ui.IPartListener[]Gets the part listeners.- org.eclipse.ui.IWorkbenchPartGets the workbench part.- booleanChecks if the part is disposed of.- void- removePartListener- (org.eclipse.ui.IPartListener listener) Removes a part listener.
- Method Details- addPartListenervoid 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
 
- removePartListenervoid removePartListener- (org.eclipse.ui.IPartListener listener) Removes a part listener.
- getPartListenersorg.eclipse.ui.IPartListener[] getPartListeners()Gets the part listeners. The return value is cached and very efficient in terms of memory allocation.
- getWorkbenchPartorg.eclipse.ui.IWorkbenchPart getWorkbenchPart()Gets the workbench part.
- getActionBarsorg.eclipse.ui.IActionBars getActionBars()Gets the action bars (different for View and Editor).
- isDisposedboolean isDisposed()Checks if the part is disposed of.