blob: b2c50711e19ffffb315ebea57886b1c32d5a6b91 [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Development Tooling"-Software
*
* Copyright 2003, 2009 Fraunhofer Gesellschaft, Munich, Germany,
* for its Fraunhofer Institute for Computer Architecture and Software
* Technology (FIRST), Berlin, Germany and Technical University Berlin,
* Germany.
*
* 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
*
* Please visit http://www.eclipse.org/objectteams for updates and contact.
*
* Contributors:
* Fraunhofer FIRST - Initial API and implementation
* Technical University Berlin - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.otdt.ui.dialogs;
import org.eclipse.objectteams.otdt.core.IOTType;
/**
* @author gis
*/
public interface ISearchFilter
{
/**
* Gets an array of OT types as input and is supposed
* to return a new filtered array of OT Types that should
* be used instead of the given one.
*
* May return the (modified or not) original array.
*/
public IOTType[] filterTypes(IOTType[] types);
}