blob: ef55e6d98be69c6de884be8ded88f75f14d80ea4 [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.CommonBehaviors.BasicBehaviors;
import java.util.List;
import org.eclipse.papyrus.moka.fuml.Semantics.Classes.Kernel.IValue;
import org.eclipse.uml2.uml.Parameter;
public interface IParameterValue {
public IParameterValue copy();
public void setParameter(Parameter parameter);
public Parameter getParameter();
public List<IValue> getValues();
public void setValues(List<IValue> values);
}