blob: 600f6c10c5e1faf109e779c5f4d6c5d0c0335f70 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2012 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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Eugen Neufeld - initial API and implementation
******************************************************************************/
package org.eclipse.emf.ecp.common.cachetree;
/**
* @author Eugen Neufeld
*
*/
public interface IExcludedObjectsCallback {
/**
* Checks whether an Object is excluded.
*
* @param object the obejct to check
* @return true if excluded, false otherwise
*/
boolean isExcluded(Object object);
}