/** * <copyright> * </copyright> * * $Id$ */ package fr.inria.atlanmod.collaboro.notation; import org.eclipse.emf.ecore.EReference; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Reference Value</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link fr.inria.atlanmod.collaboro.notation.ReferenceValue#getReference <em>Reference</em>}</li> * </ul> * </p> * * @see fr.inria.atlanmod.collaboro.notation.NotationPackage#getReferenceValue() * @model * @generated */ public interface ReferenceValue extends Value { /** * Returns the value of the '<em><b>Reference</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Reference</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Reference</em>' reference. * @see #setReference(EReference) * @see fr.inria.atlanmod.collaboro.notation.NotationPackage#getReferenceValue_Reference() * @model required="true" * @generated */ EReference getReference(); /** * Sets the value of the '{@link fr.inria.atlanmod.collaboro.notation.ReferenceValue#getReference <em>Reference</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Reference</em>' reference. * @see #getReference() * @generated */ void setReference(EReference value); } // ReferenceValue