/** */ package org.erlide.erlang; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> A representation of the model object ' * <em><b>Binary Item</b></em>'. <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.erlide.erlang.BinaryItem#getExpr <em>Expr</em>}</li> * <li>{@link org.erlide.erlang.BinaryItem#getSize <em>Size</em>}</li> * <li>{@link org.erlide.erlang.BinaryItem#getTypes <em>Types</em>}</li> * <li>{@link org.erlide.erlang.BinaryItem#getType <em>Type</em>}</li> * </ul> * * @see org.erlide.erlang.ErlangPackage#getBinaryItem() * @model * @generated */ public interface BinaryItem extends EObject { /** * Returns the value of the '<em><b>Expr</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Expr</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>Expr</em>' containment reference. * @see #setExpr(Expression) * @see org.erlide.erlang.ErlangPackage#getBinaryItem_Expr() * @model containment="true" * @generated */ Expression getExpr(); /** * Sets the value of the '{@link org.erlide.erlang.BinaryItem#getExpr * <em>Expr</em>}' containment reference. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @param value * the new value of the '<em>Expr</em>' containment reference. * @see #getExpr() * @generated */ void setExpr(Expression value); /** * Returns the value of the '<em><b>Size</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Size</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>Size</em>' containment reference. * @see #setSize(Expression) * @see org.erlide.erlang.ErlangPackage#getBinaryItem_Size() * @model containment="true" * @generated */ Expression getSize(); /** * Sets the value of the '{@link org.erlide.erlang.BinaryItem#getSize * <em>Size</em>}' containment reference. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @param value * the new value of the '<em>Size</em>' containment reference. * @see #getSize() * @generated */ void setSize(Expression value); /** * Returns the value of the '<em><b>Types</b></em>' containment reference * list. The list contents are of type {@link org.erlide.erlang.BitType}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Types</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>Types</em>' containment reference list. * @see org.erlide.erlang.ErlangPackage#getBinaryItem_Types() * @model containment="true" * @generated */ EList<BitType> getTypes(); /** * Returns the value of the '<em><b>Type</b></em>' containment reference * list. The list contents are of type {@link org.erlide.erlang.BitType}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</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>Type</em>' containment reference list. * @see org.erlide.erlang.ErlangPackage#getBinaryItem_Type() * @model containment="true" * @generated */ EList<BitType> getType(); } // BinaryItem