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

* The following features are supported: *

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