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

* The following features are supported: *

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