/** */ package hu.bme.mit.inf.dslreasoner.ecore2logic.ecore2logicannotations; import hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Relation; import hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.AssertionAnnotation; /** * * A representation of the model object 'Inverse Relation Assertion'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.ecore2logic.ecore2logicannotations.Ecore2logicannotationsPackage#getInverseRelationAssertion() * @model * @generated */ public interface InverseRelationAssertion extends AssertionAnnotation { /** * Returns the value of the 'Inverse A' reference. * *

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

* * @return the value of the 'Inverse A' reference. * @see #setInverseA(Relation) * @see hu.bme.mit.inf.dslreasoner.ecore2logic.ecore2logicannotations.Ecore2logicannotationsPackage#getInverseRelationAssertion_InverseA() * @model required="true" * @generated */ Relation getInverseA(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.ecore2logic.ecore2logicannotations.InverseRelationAssertion#getInverseA Inverse A}' reference. * * * @param value the new value of the 'Inverse A' reference. * @see #getInverseA() * @generated */ void setInverseA(Relation value); /** * Returns the value of the 'Inverse B' reference. * *

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

* * @return the value of the 'Inverse B' reference. * @see #setInverseB(Relation) * @see hu.bme.mit.inf.dslreasoner.ecore2logic.ecore2logicannotations.Ecore2logicannotationsPackage#getInverseRelationAssertion_InverseB() * @model required="true" * @generated */ Relation getInverseB(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.ecore2logic.ecore2logicannotations.InverseRelationAssertion#getInverseB Inverse B}' reference. * * * @param value the new value of the 'Inverse B' reference. * @see #getInverseB() * @generated */ void setInverseB(Relation value); } // InverseRelationAssertion