/** * MSPDI is copyright Microsoft, Inc. * Implementation wrapper in ecore done by Kestrel Technology LLC */ package net.certware.planning.mspdi; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Value List Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.planning.mspdi.ValueListType#getValue <em>Value</em>}</li> * </ul> * </p> * * @see net.certware.planning.mspdi.MspdiPackage#getValueListType() * @model extendedMetaData="name='ValueList_._type' kind='elementOnly'" * @generated */ public interface ValueListType extends EObject { /** * Returns the value of the '<em><b>Value</b></em>' containment reference list. * The list contents are of type {@link net.certware.planning.mspdi.ValueType}. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * The values that make up the value list. * <!-- end-model-doc --> * @return the value of the '<em>Value</em>' containment reference list. * @see net.certware.planning.mspdi.MspdiPackage#getValueListType_Value() * @model containment="true" required="true" * extendedMetaData="kind='element' name='Value' namespace='##targetNamespace'" * @generated */ EList<ValueType> getValue(); } // ValueListType