Package com.iizigo.editor
Interface IPartExtensionIZ
- All Superinterfaces:
- IDisposedPart
- All Known Implementing Classes:
- PartExtensionIZ
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- (IPartListener listener) Adds a part listener.Gets the action bars (different for View and Editor).Gets the part listeners.Gets the workbench part.- booleanChecks if the part is disposed of.- void- removePartListener- (IPartListener listener) Removes a part listener.
- Method Details- addPartListenerAdds a part listener. Part that added as listeners in this method are called with the dispose method if they are instances of:- RetargetAction
 
- removePartListenerRemoves a part listener.
- getPartListenersIPartListener[] getPartListeners()Gets the part listeners. The return value is cached and very efficient in terms of memory allocation.
- getWorkbenchPartIWorkbenchPart getWorkbenchPart()Gets the workbench part.
- getActionBarsIActionBars getActionBars()Gets the action bars (different for View and Editor).
- isDisposedboolean isDisposed()Checks if the part is disposed of.- Specified by:
- isDisposedin interface- IDisposedPart
- Returns:
- true if disposed of, false otherwise.