/** */ package hu.bme.mit.inf.dslreasoner.logic.model.logicproblem; import hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Function; /** * * A representation of the model object 'Function Annotation'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getFunctionAnnotation() * @model * @generated */ public interface FunctionAnnotation extends Annotation { /** * Returns the value of the 'Target' reference. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Function#getAnnotations Annotations}'. * *

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

* * @return the value of the 'Target' reference. * @see #setTarget(Function) * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getFunctionAnnotation_Target() * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Function#getAnnotations * @model opposite="annotations" required="true" * @generated */ Function getTarget(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.FunctionAnnotation#getTarget Target}' reference. * * * @param value the new value of the 'Target' reference. * @see #getTarget() * @generated */ void setTarget(Function value); } // FunctionAnnotation