/** * <copyright> * </copyright> * * $Id$ */ package fr.inria.atlanmod.collaboro.notation; import org.eclipse.emf.cdo.CDOObject; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Definition</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link fr.inria.atlanmod.collaboro.notation.Definition#getElements <em>Elements</em>}</li> * </ul> * </p> * * @see fr.inria.atlanmod.collaboro.notation.NotationPackage#getDefinition() * @model * @extends CDOObject * @generated */ public interface Definition extends CDOObject { /** * Returns the value of the '<em><b>Elements</b></em>' containment reference list. * The list contents are of type {@link fr.inria.atlanmod.collaboro.notation.NotationElement}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Elements</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Elements</em>' containment reference list. * @see fr.inria.atlanmod.collaboro.notation.NotationPackage#getDefinition_Elements() * @model containment="true" * @generated */ EList<NotationElement> getElements(); } // Definition