blob: becb45c0cf6cf4b2a2b65c7eba762e5d67fad097 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 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.xsd.ui.internal.dialogs.types.common;
import java.util.List;
import org.eclipse.jface.viewers.ILabelProvider;
public interface IComponentSelectionProvider {
// don't use
List getComponents();
// instead use this one
// warning ... this will get called on a non UI thread
void getComponents(IComponentList list);
String getType(Object component);
ILabelProvider getLabelProvider();
List getQualifier(Object component);
}