/** */ package org.erlide.erlang; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> A representation of the model object ' * <em><b>Record Type</b></em>'. <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.erlide.erlang.RecordType#getRec <em>Rec</em>}</li> * <li>{@link org.erlide.erlang.RecordType#getFields <em>Fields</em>}</li> * </ul> * * @see org.erlide.erlang.ErlangPackage#getRecordType() * @model * @generated */ public interface RecordType extends Type { /** * Returns the value of the '<em><b>Rec</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Rec</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Rec</em>' containment reference. * @see #setRec(Expression) * @see org.erlide.erlang.ErlangPackage#getRecordType_Rec() * @model containment="true" * @generated */ Expression getRec(); /** * Sets the value of the '{@link org.erlide.erlang.RecordType#getRec * <em>Rec</em>}' containment reference. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @param value * the new value of the '<em>Rec</em>' containment reference. * @see #getRec() * @generated */ void setRec(Expression value); /** * Returns the value of the '<em><b>Fields</b></em>' containment reference * list. The list contents are of type {@link org.erlide.erlang.FieldType}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Fields</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>Fields</em>' containment reference list. * @see org.erlide.erlang.ErlangPackage#getRecordType_Fields() * @model containment="true" * @generated */ EList<FieldType> getFields(); } // RecordType