説明: この拡張ポイントは、「エクスポート」ウィザード拡張機能を登録するために使用します。 「エクスポート」ウィザードは、「エクスポート」ダイアログの選択項目として表示され、 ワークベンチからのリソースのエクスポートに使用されます。
ウィザードでは、オプションで、ウィザードに関する簡略テキストを本文に含む記述サブエレメントを 指定することができます。
構成マークアップ:
<!ELEMENT extension (wizard*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED
>
<!ELEMENT wizard (description? , selection*)>
「エクスポート」ウィザードの作成に使用されるエレメント
<!ATTLIST wizard<!ELEMENT description (#CDATA)>
エクスポート・エンジンの機能についての簡単な説明を本文に含むオプションのサブエレメント。
<!ELEMENT selection EMPTY>
ウィザードの起動時に選択可能なオブジェクトのタイプおよび名前を制限するオプションのエレメント。
<!ATTLIST selection
<extension point="org.eclipse.ui.exportWizards"> <wizard id="com.xyz.ExportWizard1" name="XYZ Web Exporter" class="com.xyz.exports.ExportWizard1" icon="./icons/import1.gif"> <description> A simple engine that exports Web project </description> <selection class="org.eclipse.core.resources.IProject"/> </wizard> </extension>
API 情報: class 属性の値は、org.eclipse.ui.IExportWizard を インプリメントするクラスの名前である必要があります。
提供されるインプリメンテーション: ワークベンチには、 ファイルおよびディレクトリーのエクスポート・エンジンがあらかじめロードされています。
Copyright (c) 2002 IBM Corporation and others.
All rights reserved.
This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html