KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > IExportWizard


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui;
12
13 /**
14  * Interface for export wizards.
15  * <p>
16  * Clients should implement this interface and include the name of their class
17  * in a wizard contributed to the workbench's export wizard extension point
18  * (named <code>"org.eclipse.ui.exportWizards"</code>).
19  * For example, the plug-in's XML markup might contain:
20  * <pre>
21  * &LT;extension point="org.eclipse.ui.exportWizards"&GT;
22  * &LT;wizard
23  * id="com.example.myplugin.blob"
24  * name="Blob File"
25  * class="com.example.myplugin.BlobFileExporter"
26  * icon="icons/export_blob_wiz.gif"&GT;
27  * &LT;description&GT;Export resources to a BLOB file&LT;/description&GT;
28  * &LT;selection class="org.eclipse.core.resources.IResource" /&GT;
29  * &LT;/wizard&GT;
30  * &LT;/extension&GT;
31  * </pre>
32  * </p>
33  *
34  * @see org.eclipse.jface.wizard.IWizard
35  */

36 public interface IExportWizard extends IWorkbenchWizard {
37 }
38
Popular Tags