/** */ package org.erlide.erlang; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> A representation of the model object ' * <em><b>Type Attribute</b></em>'. <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.erlide.erlang.TypeAttribute#getName <em>Name</em>}</li> * <li>{@link org.erlide.erlang.TypeAttribute#getArgs <em>Args</em>}</li> * <li>{@link org.erlide.erlang.TypeAttribute#getType <em>Type</em>}</li> * </ul> * * @see org.erlide.erlang.ErlangPackage#getTypeAttribute() * @model * @generated */ public interface TypeAttribute extends AtomRefTarget, AbstractTypeAttribute { /** * Returns the value of the '<em><b>Name</b></em>' attribute. <!-- * begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, there really * should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.erlide.erlang.ErlangPackage#getTypeAttribute_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.erlide.erlang.TypeAttribute#getName * <em>Name</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value * the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Args</b></em>' containment reference * list. The list contents are of type {@link org.erlide.erlang.Expression}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Args</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>Args</em>' containment reference list. * @see org.erlide.erlang.ErlangPackage#getTypeAttribute_Args() * @model containment="true" * @generated */ EList<Expression> getArgs(); /** * 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(TopType) * @see org.erlide.erlang.ErlangPackage#getTypeAttribute_Type() * @model containment="true" * @generated */ TopType getType(); /** * Sets the value of the '{@link org.erlide.erlang.TypeAttribute#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(TopType value); } // TypeAttribute