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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getConstantAnnotation() * @model * @generated */ public interface ConstantAnnotation 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.Constant#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(Constant) * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.LogicproblemPackage#getConstantAnnotation_Target() * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Constant#getAnnotations * @model opposite="annotations" required="true" * @generated */ Constant getTarget(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.ConstantAnnotation#getTarget Target}' reference. * * * @param value the new value of the 'Target' reference. * @see #getTarget() * @generated */ void setTarget(Constant value); } // ConstantAnnotation