説明: この拡張ポイントは、「インポート」ウィザード拡張機能を登録するために使用します。 「インポート」ウィザードは、「インポート」ダイアログの選択項目として表示され、 ワークベンチへのリソースのインポートに使用されます。
ウィザードでは、オプションで、ウィザードに関する簡略テキストを本文に含む記述サブエレメントを 指定することができます。
構成マークアップ:
<!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.importWizards"> <wizard id="com.xyz.ImportWizard1" name="XYZ Web Scraper" class="com.xyz.imports.ImportWizard1" icon="./icons/import1.gif"> <description> A simple engine that searches the Web and imports files </description> <selection class="org.eclipse.core.resources.IResource"/> </wizard> </extension>
API 情報: class 属性の値は、org.eclipse.ui.IImportWizard を インプリメントするクラスの名前である必要があります。
提供されるインプリメンテーション: ワークベンチには、 ファイルおよびディレクトリーのインポート・エンジンがあらかじめロードされています。
Copyright (c) 2002,2003 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