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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getConstant() * @model abstract="true" * @generated */ public interface Constant extends SymbolicDeclaration { /** * Returns the value of the 'Type' containment reference. * *

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

* * @return the value of the 'Type' containment reference. * @see #setType(TypeReference) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getConstant_Type() * @model containment="true" required="true" * @generated */ TypeReference getType(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Constant#getType Type}' containment reference. * * * @param value the new value of the 'Type' containment reference. * @see #getType() * @generated */ void setType(TypeReference value); /** * Returns the value of the 'Annotations' reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.ConstantAnnotation}. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.ConstantAnnotation#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#getConstant_Annotations() * @see hu.bme.mit.inf.dslreasoner.logic.model.logicproblem.ConstantAnnotation#getTarget * @model opposite="target" * @generated */ EList getAnnotations(); } // Constant