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