org.eclipse.pde.ui.pluginContent
. Disse skabeloner opretter et interessant indhold til netop oprettede plugin-projekter. Desuden kan alle de skabeloner, som er bidraget vha. dette udvidelsespunkt, ses i en særlig version af plugin-indholdsguiden, som viser skabelonerne og gør det muligt for brugerne at kombinere skabelonerne, som de vil, ved at markere dem på listen.<!ELEMENT extension (template+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED
><!ELEMENT template EMPTY>
<!ATTLIST template
id CDATA #REQUIRED
name CDATA #REQUIRED
icon CDATA #IMPLIED
class CDATA #REQUIRED
contributingId CDATA #REQUIRED
>org.eclipse.pde.ui.ITemplateSection
.
<extension point="org.eclipse.pde.ui.templates"> <template contributingId="org.eclipse.ui.actionSets" name="XYZ Action Set Generator" class="com.example.xyz.XYZActionSetTemplate" id="com.example.xyz.ActionSetTemplate"> </template> </extension>
org.eclipse.pde.ui.templates.ITemplateSection
. Der er imidlertid også tilgængelige abstract-klasser, som implementerer grænsefladen, og som kan udvides.
Copyright (c) 2004 IBM 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.