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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getRelation() * @model abstract="true" * @generated */ public interface Relation extends SymbolicDeclaration { /** * Returns the value of the 'Parameters' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.TypeReference}. * *

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

* * @return the value of the 'Parameters' containment reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getRelation_Parameters() * @model containment="true" * @generated */ EList getParameters(); /** * Returns the value of the 'Annotations' reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.RelationAnnotation}. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.RelationAnnotation#getTarget Target}'. * *

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

* * @return the value of the 'Annotations' reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getRelation_Annotations() * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.RelationAnnotation#getTarget * @model opposite="target" * @generated */ EList getAnnotations(); } // Relation