Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 


Eclipse Platform
Release 3.5

org.eclipse.ui
Interface IExportWizard

All Superinterfaces:
IWizard, IWorkbenchWizard
All Known Implementing Classes:
FileSystemExportWizard, ZipFileExportWizard

public interface IExportWizard
extends IWorkbenchWizard

Interface for export wizards.

Clients should implement this interface and include the name of their class in a wizard contributed to the workbench's export wizard extension point (named "org.eclipse.ui.exportWizards"). For example, the plug-in's XML markup might contain:

 <extension point="org.eclipse.ui.exportWizards">
   <wizard
       id="com.example.myplugin.blob"
       name="Blob File"
       class="com.example.myplugin.BlobFileExporter"
       icon="icons/export_blob_wiz.gif">
     <description>Export resources to a BLOB file</description>
     <selection class="org.eclipse.core.resources.IResource" /> 
   </wizard>
 </extension>
 

See Also:
IWizard

Method Summary
 
Methods inherited from interface org.eclipse.ui. IWorkbenchWizard
init
 
Methods inherited from interface org.eclipse.jface.wizard. IWizard
addPages, canFinish, createPageControls, dispose, getContainer, getDefaultPageImage, getDialogSettings, getNextPage, getPage, getPageCount, getPages, getPreviousPage, getStartingPage, getTitleBarColor, getWindowTitle, isHelpAvailable, needsPreviousAndNextButtons, needsProgressMonitor, performCancel, performFinish, setContainer
 


Eclipse Platform
Release 3.5

Guidelines for using Eclipse APIs.

Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire