/** */ package org.erlide.erlang; /** * <!-- begin-user-doc --> A representation of the model object ' * <em><b>Macro Form</b></em>'. <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.erlide.erlang.MacroForm#getCall <em>Call</em>}</li> * </ul> * * @see org.erlide.erlang.ErlangPackage#getMacroForm() * @model * @generated */ public interface MacroForm extends Form { /** * Returns the value of the '<em><b>Call</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Call</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>Call</em>' containment reference. * @see #setCall(MacroCall) * @see org.erlide.erlang.ErlangPackage#getMacroForm_Call() * @model containment="true" * @generated */ MacroCall getCall(); /** * Sets the value of the '{@link org.erlide.erlang.MacroForm#getCall * <em>Call</em>}' containment reference. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @param value * the new value of the '<em>Call</em>' containment reference. * @see #getCall() * @generated */ void setCall(MacroCall value); } // MacroForm