Package org.eclipse.debug.ui
Interface IDetailPane3
-
- All Superinterfaces:
IDetailPane
,ISaveablePart
public interface IDetailPane3 extends IDetailPane, ISaveablePart
An extension to the detail pane interface which allows implementors to save contents of the details pane.Clients may implement this interface.
- Since:
- 3.6
-
-
Field Summary
-
Fields inherited from interface org.eclipse.ui.ISaveablePart
PROP_DIRTY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addPropertyListener(IPropertyListener listener)
Adds a listener for changes to properties in this detail pane.void
removePropertyListener(IPropertyListener listener)
Removes the given property listener from this workbench part.-
Methods inherited from interface org.eclipse.debug.ui.IDetailPane
createControl, display, dispose, getDescription, getID, getName, init, setFocus
-
Methods inherited from interface org.eclipse.ui.ISaveablePart
doSave, doSaveAs, isDirty, isSaveAsAllowed, isSaveOnCloseNeeded
-
-
-
-
Method Detail
-
addPropertyListener
void addPropertyListener(IPropertyListener listener)
Adds a listener for changes to properties in this detail pane. Has no effect if an identical listener is already registered.The property ids are defined in
IWorkbenchPartConstants
.- Parameters:
listener
- a property listener
-
removePropertyListener
void removePropertyListener(IPropertyListener listener)
Removes the given property listener from this workbench part. Has no effect if an identical listener is not registered.- Parameters:
listener
- a property listener
-
-