Interface for workbench property pages. Property pages generally show up in
the workbench's Property Pages dialog.
Clients should implement this interface and include the name of their class
in an extension contributed to the workbench's property page extension point
(named "org.eclipse.ui.propertyPages" ).
For example, the plug-in's XML markup might contain:
<extension point="org.eclipse.ui.propertyPages">
<page id="com.example.myplugin.props"
name="Knobs"
objectClass="org.eclipse.core.resources.IResource"
class="com.example.myplugin.MyPropertyPage" />
</extension>
|