Device Editor
Identifier:
org.eclipse.me.ui.deviceEditor
Since:
[Enter the first release in which this extension point appears.]
Description:
Provides an extension point for registering an editor for use in editing a device from the device management user interface. Device types that do not have a registered editor will not be enabled for editing.
Configuration Markup:
<!ELEMENT extension (editor)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
- point - a fully qualified identifier of the target extension point
- id - an optional identifier of the extension instance
- name - an optional name of the extension instance
<!ELEMENT editor EMPTY>
<!ATTLIST editor
id CDATA #REQUIRED
name CDATA #IMPLIED
class CDATA #REQUIRED
deviceClass CDATA #REQUIRED>
- id - a required fully-qualified identifier for this particular device editor extension
- name - an optional displayable name for this particular device editor extension
- class - the required implementation class for the
org.eclipse.ui.IActionDelegate interface that will launch the edit function for the type of device.
- deviceClass - the required name of the implementation class for the
eclipseme.core.model.device.IDevice interface implementation for which this particular editor will be used for editing.
Examples:
[Enter extension point usage example here.]
Supplied Implementation:
[Enter information about supplied implementation of this extension point.]