blob: 47e0b338622bdff372e876c831ad7f979b368f55 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 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.ui.navigator.internal.filters;
import java.util.List;
/**
* @author mdelder
*
*/
public interface ExtensionFilterProvider {
/**
*
* @param viewerId
* @return a List of ExtensionFilterDescriptor
*/
List getExtensionFilterDescriptors(String extensionId, String viewerId);
}