KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > dialogs > IWorkingSetEditWizard


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.dialogs;
12
13 import org.eclipse.jface.wizard.IWizard;
14 import org.eclipse.ui.IWorkingSet;
15
16 /**
17  * A working set edit wizard allows editing a working set using
18  * the IWorkingSetPage associated with the working set.
19  * See the org.eclipse.ui.workingSets extension point for details.
20  * <p>
21  * Use org.eclipse.ui.IWorkingSetManager#createWorkingSetEditWizard(IWorkingSet)
22  * to create an instance of this wizard.
23  * </p>
24  * <p>
25  * This interface is not intended to be implemented by clients.
26  * </p>
27  * @see org.eclipse.ui.IWorkingSetManager
28  * @since 2.1
29  */

30 public interface IWorkingSetEditWizard extends IWizard {
31     /**
32      * Returns the working set edited in the wizard.
33      *
34      * @return the working set edited in the wizard.
35      */

36     public IWorkingSet getSelection();
37 }
38
Popular Tags