/** * <copyright> * </copyright> * * $Id$ */ package org.csu.idl.idlmm; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Field</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.csu.idl.idlmm.Field#getIdentifier <em>Identifier</em>}</li> * </ul> * </p> * * @see org.csu.idl.idlmm.IdlmmPackage#getField() * @model * @generated */ public interface Field 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#getField_Identifier() * @model * @generated */ String getIdentifier(); /** * Sets the value of the '{@link org.csu.idl.idlmm.Field#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); } // Field