<!ELEMENT extension (wizard*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT wizard (description?)>
<!ATTLIST wizard
id CDATA #REQUIRED
name CDATA #REQUIRED
icon CDATA #IMPLIED
class CDATA #REQUIRED
category CDATA #IMPLIED
ui-content (true | false) "true"
java (true | false) "true"
rcp (true | false) "false">
AbstractUIPlugin
クラスを
拡張しますが、非 UI プラグインは Plugin
ベース・クラスを拡張します)。 Eclipse に対する
多くのコントリビューションに UI コンテンツがあるため、この属性はデフォルトで true
になっています。true
になっています。 プラグインに Java コードが
ない場合は、false
に設定します (文書ファイルのみの場合など)。true
に設定された場合、ウィザードは、「リッチ・クライアント・アプリケーション」オプションが選択されたときにのみ「新規プラグイン・プロジェクト」ウィザードに表示されます。<!ELEMENT description (#PCDATA)>
このウィザードの簡単な説明。
<extension point=
"org.eclipse.pde.ui.pluginContent"
>
<wizard name=
"Example Plug-in Content Generator"
icon=
"icons/content_wizard.gif"
class=
"com.example.xyz.ContentGeneratorWizard"
id=
"com.example.xyz.ExampleContentGenerator"
>
<description>
Adds a view and a preference page.</description>
</wizard>
</extension>
org.eclipse.jface.wizard.Wizard
を継承していることが期待されます。
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.