blob: 9507519538cdabad25be4154374544e5cbb151c9 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2016 CEA LIST 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:
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.moka.fuml.Semantics.Classes.Kernel;
import org.eclipse.papyrus.moka.fuml.Semantics.Loci.LociL1.ILocus;
import org.eclipse.papyrus.moka.fuml.Semantics.Loci.LociL1.ISemanticVisitor;
import org.eclipse.uml2.uml.ValueSpecification;
public interface IEvaluation extends ISemanticVisitor {
public abstract IValue evaluate();
public void setSpecification(ValueSpecification specification);
public ValueSpecification getSpecification();
public void setLocus(ILocus locus);
public ILocus getLocus();
}