blob: c34cfe901b9d3f4b96f4a8ab95e4620dfe72aa26 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2017 CEA LIST.
*
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.moka.parametric.semantics;
import org.eclipse.papyrus.moka.fuml.simpleclassifiers.IValue;
import org.eclipse.papyrus.moka.pscs.classification.CS_InstanceValueEvaluation;
public class Parametric_InstanceValueEvaluation extends CS_InstanceValueEvaluation {
@Override
public IValue evaluate() {
// Nothing special done. Kept for future integration of CSVDataValue
return super.evaluate() ;
}
}