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 * <extension point="org.eclipse.ui.exportWizards"> 22 * <wizard 23 * id="com.example.myplugin.blob" 24 * name="Blob File" 25 * class="com.example.myplugin.BlobFileExporter" 26 * icon="icons/export_blob_wiz.gif"> 27 * <description>Export resources to a BLOB file</description> 28 * <selection class="org.eclipse.core.resources.IResource" /> 29 * </wizard> 30 * </extension> 31 * </pre> 32 * </p> 33 * 34 * @see org.eclipse.jface.wizard.IWizard 35 */ 36 public interface IExportWizard extends IWorkbenchWizard { 37 } 38