blob: de682711671394082987ec81364470d0f95dfeab [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 {
// warning ... this will get called on a non UI thread
void getComponents(IComponentList list, boolean quick);
String getType(Object component);
ILabelProvider getLabelProvider();
List getQualifiers(Object component);
String getNameFieldTitle();
String getListTitle();
}