/** * <copyright> * </copyright> * * $Id$ */ package org.csu.idl.idlmm; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Union Field</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.csu.idl.idlmm.UnionField#getIdentifier <em>Identifier</em>}</li> * <li>{@link org.csu.idl.idlmm.UnionField#getLabel <em>Label</em>}</li> * <li>{@link org.csu.idl.idlmm.UnionField#isIsDefault <em>Is Default</em>}</li> * </ul> * </p> * * @see org.csu.idl.idlmm.IdlmmPackage#getUnionField() * @model * @generated */ public interface UnionField extends Typed { /** * Returns the value of the '<em><b>Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Identifier</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Identifier</em>' attribute. * @see #setIdentifier(String) * @see org.csu.idl.idlmm.IdlmmPackage#getUnionField_Identifier() * @model * @generated */ String getIdentifier(); /** * Sets the value of the '{@link org.csu.idl.idlmm.UnionField#getIdentifier <em>Identifier</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Identifier</em>' attribute. * @see #getIdentifier() * @generated */ void setIdentifier(String value); /** * Returns the value of the '<em><b>Label</b></em>' containment reference list. * The list contents are of type {@link org.csu.idl.idlmm.Expression}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Label</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>Label</em>' containment reference list. * @see org.csu.idl.idlmm.IdlmmPackage#getUnionField_Label() * @model containment="true" * @generated */ EList<Expression> getLabel(); /** * Returns the value of the '<em><b>Is Default</b></em>' attribute. * The default value is <code>"false"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Is Default</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Is Default</em>' attribute. * @see #setIsDefault(boolean) * @see org.csu.idl.idlmm.IdlmmPackage#getUnionField_IsDefault() * @model default="false" * @generated */ boolean isIsDefault(); /** * Sets the value of the '{@link org.csu.idl.idlmm.UnionField#isIsDefault <em>Is Default</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Is Default</em>' attribute. * @see #isIsDefault() * @generated */ void setIsDefault(boolean value); } // UnionField