blob: e6e0549c32d16cd81f7cf0a7eadf4855701c836b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.ws.internal.provisional.ui.wsrt;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.wst.command.internal.env.ui.widgets.WidgetDataEvents;
import org.eclipse.wst.command.internal.provisional.env.core.common.Status;
import org.eclipse.wst.ws.internal.provisional.wsrt.ISelection;
public interface IObjectSelector {
public void setInitialSelection(ISelection sel);
public ISelection getSelection();
public String getProject();
public Status validateSelection(ISelection sel);
public WidgetDataEvents addControls(Composite parent, Listener statusListener);
}