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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getSymbolicValue() * @model * @generated */ public interface SymbolicValue extends Term { /** * Returns the value of the 'Symbolic Reference' reference. * *

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

* * @return the value of the 'Symbolic Reference' reference. * @see #setSymbolicReference(SymbolicDeclaration) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getSymbolicValue_SymbolicReference() * @model * @generated */ SymbolicDeclaration getSymbolicReference(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.SymbolicValue#getSymbolicReference Symbolic Reference}' reference. * * * @param value the new value of the 'Symbolic Reference' reference. * @see #getSymbolicReference() * @generated */ void setSymbolicReference(SymbolicDeclaration value); /** * Returns the value of the 'Parameter Substitutions' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Term}. * *

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

* * @return the value of the 'Parameter Substitutions' containment reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getSymbolicValue_ParameterSubstitutions() * @model containment="true" * @generated */ EList getParameterSubstitutions(); } // SymbolicValue