/** */ package hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation; import hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.DefinedElement; /** * * A representation of the model object 'Unary Element Relation Link'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.PartialinterpretationPackage#getUnaryElementRelationLink() * @model * @generated */ public interface UnaryElementRelationLink extends RelationLink { /** * Returns the value of the 'Param1' reference. * *

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

* * @return the value of the 'Param1' reference. * @see #setParam1(DefinedElement) * @see hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.PartialinterpretationPackage#getUnaryElementRelationLink_Param1() * @model required="true" * @generated */ DefinedElement getParam1(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.UnaryElementRelationLink#getParam1 Param1}' reference. * * * @param value the new value of the 'Param1' reference. * @see #getParam1() * @generated */ void setParam1(DefinedElement value); } // UnaryElementRelationLink