public interface IWorkbenchPreferencePage extends IPreferencePage
Clients should implement this interface and include the name of their class
in an extension contributed to the workbench's preference extension point
(named "org.eclipse.ui.preferencePages"
).
For example, the plug-in's XML markup might contain:
<extension point="org.eclipse.ui.preferencePages"> <page id="com.example.myplugin.prefs" name="Knobs" class="com.example.myplugin.MyPreferencePage" /> </extension>
Modifier and Type | Method and Description |
---|---|
void |
init(IWorkbench workbench)
Initializes this preference page for the given workbench.
|
computeSize, isValid, okToLeave, performCancel, performOk, setContainer, setSize
createControl, dispose, getControl, getDescription, getErrorMessage, getImage, getMessage, getTitle, performHelp, setDescription, setImageDescriptor, setTitle, setVisible
void init(IWorkbench workbench)
This method is called automatically as the preference page is being created and initialized. Clients must not call this method.
workbench
- the workbench
Copyright (c) 2000, 2015 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.