The com.ibm.etools.systems.core.propertyPages extension point is defined in the
plugin com.ibm.etools.systems.core, and it is patterned after Eclipse's org.Eclipse.ui.propertyPages extension point, but both
simplified and extended specifically for remote objects.
What is a property page?
It is a page that shows up in the Eclipse Properties dialog that users
get to by right-clicking on an object within any tree or table view, and selecting
the Properties action.
Extenders supply one or more <page> elements within the beginning and ending <extension> element for this. The attributes of this <page> element are:
To use this extension point your class will typically extend one of the supplied base classes to make it easier to create these property pages for remote objects. The only method you must implement in these classes is createContents(Composite), which populates the details page on the right side when the node is selected on the left side. The supplied classes are listed here:
Base Class | Description |
---|---|
SystemAbstractPropertyPageExtensionAction in com.ibm.etools.systems.core plugin. | Base class offering generic support for any remote object property page. |
SystemAbstractRemoteFilePropertyPageExtensionAction in com.ibm.etools.systems.core plugin. | Specialized base class offering specific support for any remote file object property page. |
ISeriesAbstractIFSPropertyPageExtensionAction in com.ibm.etools.iseries.core plugin. | Specialized base class offering specific support for iSeries IFS file or folder property pages. |
ISeriesAbstractQSYSPropertyPageExtensionAction in com.ibm.etools.iseries.core plugin. | Specialized base class offering specific support for property pages for iSeries objects in the QSYS file system. |
See the property page tutorial for a step-by-step example.