Vender Specific JAD Attributes

Identifier:
org.eclipse.mtj.ui.venderSpecJADAttributes

Since:
[Enter the first release in which this extension point appears.]

Description:
Provides an extension point to add the some JAD attributes to a specific JAD editor page.

Configuration Markup:

<!ELEMENT extension (jadAttributes)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT jadAttributes (jadDescriptorsProvider)+>

<!ATTLIST jadAttributes

pageID CDATA #REQUIRED>


<!ELEMENT jadDescriptorsProvider EMPTY>

<!ATTLIST jadDescriptorsProvider

class CDATA #REQUIRED>


Examples:
an extension example that add some JAD attributes to the required page:

 
   <extension
          point="org.eclipse.mtj.ui.jadAttributes">
       <jadAttributes pageID="required">
         <jadDescriptorsProvider
          class="org.eclipse.mtj.ui.internal.editor.jad.RequiredJADDesciptorsProvider"/>
       </jadAttributes>
    </extension>
   
   

an extension example that add some motorola specific JAD attributes to the OTA page:

 
   <extension
          point="org.eclipse.mtj.ui.jadAttributes">
       <jadAttributes 
         pageID="OTA"
         vendorSpec="true"
         vendorSpecTester="org.eclipse.mtj.toolkit.uei.jadEditor.MotoSpecTester">
         <jadDescriptorsProvider
          class="org.eclipse.mtj.toolkit.uei.jadEditor.MotoJADDesciptorsProvider"/>
       </jadAttributes>
    </extension>
   
   

Supplied Implementation:
[Enter information about supplied implementation of this extension point.]