/** */ package org.eclipse.viatra.solver.language.model.problem; /** * * A representation of the model object 'Constant Assertion Argument'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.model.problem.ProblemPackage#getConstantAssertionArgument() * @model * @generated */ public interface ConstantAssertionArgument extends AssertionArgument { /** * Returns the value of the 'Constant' containment reference. * * * @return the value of the 'Constant' containment reference. * @see #setConstant(Constant) * @see org.eclipse.viatra.solver.language.model.problem.ProblemPackage#getConstantAssertionArgument_Constant() * @model containment="true" * @generated */ Constant getConstant(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.model.problem.ConstantAssertionArgument#getConstant Constant}' containment reference. * * * @param value the new value of the 'Constant' containment reference. * @see #getConstant() * @generated */ void setConstant(Constant value); } // ConstantAssertionArgument