Device Editor

Identifier:
org.eclipse.me.ui.deviceeditor

Since:
1.0

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

>


<!ELEMENT editor EMPTY>

<!ATTLIST editor

id          CDATA #REQUIRED

name        CDATA #IMPLIED

class       CDATA #REQUIRED

deviceClass CDATA #REQUIRED

>


Examples:
Example of a declaration of a deviceeditor named "UEI Device Editor":

<extension point="org.eclipse.mtj.ui.deviceeditor">
  <editor
        class="org.eclipse.mtj.ui.DefaultDeviceEditorActionDelegate"
        deviceClass="org.eclipse.mtj.internal.toolkit.uei.UEIDevice"
        id="org.eclipse.mtj.toolkit.uei.editor"
        name="UEI Device Editor"/>
</extension>

Supplied Implementation:
MTJ provides 3 implementations for the deviceeditor E.P., available in the following plug-ins:


Copyright (c) 2003,2009 Craig Setera and others.
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html