/** */ package hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Function Definition'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getFunctionDefinition() * @model * @generated */ public interface FunctionDefinition extends Function { /** * Returns the value of the 'Variable' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Variable}. * *

* If the meaning of the 'Variable' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Variable' containment reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getFunctionDefinition_Variable() * @model containment="true" * @generated */ EList getVariable(); /** * Returns the value of the 'Defines' reference. * *

* If the meaning of the 'Defines' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Defines' reference. * @see #setDefines(FunctionDeclaration) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getFunctionDefinition_Defines() * @model * @generated */ FunctionDeclaration getDefines(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.FunctionDefinition#getDefines Defines}' reference. * * * @param value the new value of the 'Defines' reference. * @see #getDefines() * @generated */ void setDefines(FunctionDeclaration value); /** * Returns the value of the 'Value' containment reference. * *

* If the meaning of the 'Value' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Value' containment reference. * @see #setValue(Term) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getFunctionDefinition_Value() * @model containment="true" required="true" * @generated */ Term getValue(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.FunctionDefinition#getValue Value}' containment reference. * * * @param value the new value of the 'Value' containment reference. * @see #getValue() * @generated */ void setValue(Term value); } // FunctionDefinition