/** */ package hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Relation Definition'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getRelationDefinition() * @model * @generated */ public interface RelationDefinition extends Relation { /** * Returns the value of the 'Variables' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Variable}. * *

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

* * @return the value of the 'Variables' containment reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getRelationDefinition_Variables() * @model containment="true" * @generated */ EList getVariables(); /** * Returns the value of the 'Value' containment reference. * *

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

* * @return the value of the 'Value' containment reference. * @see #setValue(Term) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getRelationDefinition_Value() * @model containment="true" required="true" * @generated */ Term getValue(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.RelationDefinition#getValue Value}' containment reference. * * * @param value the new value of the 'Value' containment reference. * @see #getValue() * @generated */ void setValue(Term value); /** * Returns the value of the 'Defines' reference. * *

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

* * @return the value of the 'Defines' reference. * @see #setDefines(RelationDeclaration) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getRelationDefinition_Defines() * @model * @generated */ RelationDeclaration getDefines(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.RelationDefinition#getDefines Defines}' reference. * * * @param value the new value of the 'Defines' reference. * @see #getDefines() * @generated */ void setDefines(RelationDeclaration value); } // RelationDefinition