org.eclipse.ocl.EvaluationVisitor Maven / Gradle / Ivy
/**
*
*
* Copyright (c) 2007 IBM Corporation 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:
* IBM - Initial API and implementation
*
*
*
* $Id: EvaluationVisitor.java,v 1.1 2007/01/25 18:24:37 cdamus Exp $
*/
package org.eclipse.ocl;
import java.util.Map;
import java.util.Set;
import org.eclipse.ocl.expressions.OCLExpression;
import org.eclipse.ocl.utilities.Visitable;
import org.eclipse.ocl.utilities.Visitor;
/**
* A specialized visitor that is used for evaluation an
* {@linkplain OCLExpression OCL expression} by walking its AST.
*
* See the {@link Environment} class for a description of the
* generic type parameters of this class.
*
*
* @author Tim Klinger (tklinger)
* @author Christian W. Damus (cdamus)
*/
public interface EvaluationVisitor
extends Visitor