<!ELEMENT extension (jadAttributes)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED
><!ELEMENT jadAttributes (jadDescriptorsProvider)+>
<!ATTLIST jadAttributes
pageID CDATA #REQUIRED
>Page name:Required, pageID:required
Page name:Optional, pageID:optional
Page name:Over the Air, pageID:ota
<!ELEMENT jadDescriptorsProvider EMPTY>
<!ATTLIST jadDescriptorsProvider
class CDATA #REQUIRED
>org.eclipse.mtj.ui.jadEditor.IJADDescriptorsProvider
interface that will be used to provide JAD Attributes descriptors.An extension example that add some JAD attributes to the Overview page:
<extension point="org.eclipse.mtj.core.jadattributes"> <jadAttributes pageID="overview"> <jadDescriptorsProvider class="org.eclipse.mtj.internal.ui.editors.jad.form.pages.RequiredJADDesciptorsProvider"/> </jadAttributes> </extension>
An extension example that add some motorola specific JAD attributes to the OTA page:
<extension point="org.eclipse.mtj.core.jadAttributes"> <jadAttributes pageID="motoSpecific"> <jadDescriptorsProvider class="org.eclipse.mtj.examples.jadextension.MotoJADDesciptorsProvider"/> </jadAttributes> </extension>
jadattributes
E.P., available in the org.eclipse.mtj.ui
plug-in.
Copyright (c) 2008,2009 Sybase Corporation 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