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

* The following features are supported: *

* * * @see rba.core.RBACorePackage#getIntegerProperty() * @model * @generated */ public interface IntegerProperty extends AbstractProperty { /** * Returns the value of the 'Value' containment reference. * *

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

* * @return the value of the 'Value' containment reference. * @see #setValue(Expression) * @see rba.core.RBACorePackage#getIntegerProperty_Value() * @model containment="true" required="true" * @generated */ Expression getValue(); /** * Sets the value of the '{@link rba.core.IntegerProperty#getValue Value}' containment reference. * * * @param value the new value of the 'Value' containment reference. * @see #getValue() * @generated */ void setValue(Expression value); } // IntegerProperty