/** */ package org.erlide.erlang; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> A representation of the model object ' * <em><b>Function</b></em>'. <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.erlide.erlang.Function#getName <em>Name</em>}</li> * <li>{@link org.erlide.erlang.Function#getClauses <em>Clauses</em>}</li> * </ul> * * @see org.erlide.erlang.ErlangPackage#getFunction() * @model * @generated */ public interface Function extends AtomRefTarget, Form { /** * 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#getFunction_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.erlide.erlang.Function#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>Clauses</b></em>' containment reference * list. The list contents are of type * {@link org.erlide.erlang.FunctionClause}. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Clauses</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>Clauses</em>' containment reference list. * @see org.erlide.erlang.ErlangPackage#getFunction_Clauses() * @model containment="true" * @generated */ EList<FunctionClause> getClauses(); } // Function