01: /*******************************************************************************
02: * Copyright (c) 2000, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui;
11:
12: /**
13: * Interface for creation wizards.
14: * <p>
15: * Clients should implement this interface and include the name of their class
16: * in a wizard contributed to the workbench's creation wizard extension point
17: * (named <code>"org.eclipse.ui.newWizards"</code>).
18: * For example, the plug-in's XML markup might contain:
19: * <pre>
20: * <extension point="org.eclipse.ui.newWizards">
21: * <wizard
22: * id="com.example.myplugin.new.blob"
23: * name="Blob"
24: * class="com.example.myplugin.BlobCreator"
25: * icon="icons/new_blob_wiz.gif">
26: * <description>Create a new BLOB file</description>
27: * <selection class="org.eclipse.core.resources.IResource" />
28: * </wizard>
29: * </extension>
30: * </pre>
31: * </p>
32: *
33: * @see org.eclipse.jface.wizard.IWizard
34: */
35: public interface INewWizard extends IWorkbenchWizard {
36: }
|