blob: e581f32f24882eb0bf704c3a35d11d64d2c6ac4f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 Mia-Software.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Gregoire DUPE (Mia-Software) - initial API and implementation
* Nicolas Bros (Mia-Software)
*******************************************************************************/
package org.eclipse.modisco.infra.common.core.internal.utils;
public interface IFilter {
/**
* @param object
* an element to be filtered
* @return false if the element must be filtered out.
*/
public boolean filter(Object object);
}