/** */ 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 'Multiplicity Assertion'. * * *

* The following features are supported: *

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

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

* * @return the value of the 'Relation' reference. * @see #setRelation(Relation) * @see hu.bme.mit.inf.dslreasoner.ecore2logic.ecore2logicannotations.Ecore2logicannotationsPackage#getMultiplicityAssertion_Relation() * @model required="true" * @generated */ Relation getRelation(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.ecore2logic.ecore2logicannotations.MultiplicityAssertion#getRelation Relation}' reference. * * * @param value the new value of the 'Relation' reference. * @see #getRelation() * @generated */ void setRelation(Relation value); } // MultiplicityAssertion