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 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.