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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getFunction() * @model abstract="true" * @generated */ public interface Function extends SymbolicDeclaration { /** * Returns the value of the 'Range' containment reference. * *

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

* * @return the value of the 'Range' containment reference. * @see #setRange(TypeReference) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getFunction_Range() * @model containment="true" required="true" * @generated */ TypeReference getRange(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Function#getRange Range}' containment reference. * * * @param value the new value of the 'Range' containment reference. * @see #getRange() * @generated */ void setRange(TypeReference value); /** * Returns the value of the 'Parameters' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.TypeReference}. * *

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

* * @return the value of the 'Parameters' containment reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getFunction_Parameters() * @model containment="true" * @generated */ EList getParameters(); /** * Returns the value of the 'Annotations' reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.FunctionAnnotation}. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.FunctionAnnotation#getTarget Target}'. * *

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

* * @return the value of the 'Annotations' reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getFunction_Annotations() * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.FunctionAnnotation#getTarget * @model opposite="target" * @generated */ EList getAnnotations(); } // Function