/** */ package rba.core; /** * * A representation of the model object 'Integer Value'. * * * * * * *

* The following features are supported: *

* * * @see rba.core.RBACorePackage#getIntegerValue() * @model * @generated */ public interface IntegerValue extends ValueExpression { /** * Returns the value of the 'Value' attribute. * * * * * * @return the value of the 'Value' attribute. * @see #setValue(int) * @see rba.core.RBACorePackage#getIntegerValue_Value() * @model required="true" * @generated */ int getValue(); /** * Sets the value of the '{@link rba.core.IntegerValue#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(int value); /** * * * * @Override * * @model kind="operation" * annotation="http://www.eclipse.org/emf/2002/GenModel body='return String.valueOf(value);'" * @generated */ String getExpressionText(); /** * * * * @Override * * @model kind="operation" required="true" * annotation="http://www.eclipse.org/emf/2002/GenModel body='return value;'" * @generated */ int getExpressionValue(); } // IntegerValue