blob: 001ab1906387fab4c0ae862c4aa7349b82742768 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2015 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Johannes Faltermeier - initial API and implementation
******************************************************************************/
package org.eclipse.emfforms.spi.swt.treemasterdetail;
import org.eclipse.jface.viewers.ViewerFilter;
/**
* Interface to influence the {@link ViewerFilter filters} which are added to the tree master detail.
*
* @author Johannes Faltermeier
*
*/
public interface ViewerFilterProvider {
/**
* Creates the viewer filters added to the treeviewer.
*
* @return the filters
*/
ViewerFilter[] getViewerFilters();
}