blob: 125231c5466c262b1e0a4859927a1d24ee99f588 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2018 CEA LIST and others.
* 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:
* E.D.Willink (CEA LIST) - initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.examples.emf.validation.validity.utilities;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.ocl.examples.emf.validation.validity.AbstractNode;
/**
* A derived IVisibilityFilter determines whether an AbstractNode is visible.
*/
public interface IVisibilityFilter
{
boolean isVisible(@NonNull AbstractNode abstractNode);
}