/** */ package org.erlide.erlang; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> A representation of the model object ' * <em><b>Bin Unit Type</b></em>'. <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.erlide.erlang.BinUnitType#getTypeName <em>Type Name</em>}</li> * <li>{@link org.erlide.erlang.BinUnitType#getM <em>M</em>}</li> * <li>{@link org.erlide.erlang.BinUnitType#getType <em>Type</em>}</li> * </ul> * * @see org.erlide.erlang.ErlangPackage#getBinUnitType() * @model * @generated */ public interface BinUnitType extends EObject { /** * Returns the value of the '<em><b>Type Name</b></em>' containment * reference. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type Name</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>Type Name</em>' containment reference. * @see #setTypeName(Expression) * @see org.erlide.erlang.ErlangPackage#getBinUnitType_TypeName() * @model containment="true" * @generated */ Expression getTypeName(); /** * Sets the value of the '{@link org.erlide.erlang.BinUnitType#getTypeName * <em>Type Name</em>}' containment reference. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @param value * the new value of the '<em>Type Name</em>' containment * reference. * @see #getTypeName() * @generated */ void setTypeName(Expression value); /** * Returns the value of the '<em><b>M</b></em>' attribute. <!-- * begin-user-doc --> * <p> * If the meaning of the '<em>M</em>' attribute isn't clear, there really * should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>M</em>' attribute. * @see #setM(String) * @see org.erlide.erlang.ErlangPackage#getBinUnitType_M() * @model * @generated */ String getM(); /** * Sets the value of the '{@link org.erlide.erlang.BinUnitType#getM * <em>M</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value * the new value of the '<em>M</em>' attribute. * @see #getM() * @generated */ void setM(String value); /** * Returns the value of the '<em><b>Type</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</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>Type</em>' containment reference. * @see #setType(Type) * @see org.erlide.erlang.ErlangPackage#getBinUnitType_Type() * @model containment="true" * @generated */ Type getType(); /** * Sets the value of the '{@link org.erlide.erlang.BinUnitType#getType * <em>Type</em>}' containment reference. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @param value * the new value of the '<em>Type</em>' containment reference. * @see #getType() * @generated */ void setType(Type value); } // BinUnitType