org.eclipse.pde.ui.pluginContent
扩展点。这些模板为新创建的插件项目创建有意义的内容。此外,使用此扩展点提供的所有模板可在专业版本的插件内容向导中见到,该向导将列示这些模板并允许用户通过在列表中选择模板以自由组合这些模板。<!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.templates.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
接口的类。但是,实现该接口并且可扩展的抽象类是可用的。
Copyright (c) 2004, 2005 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.