All Downloads are FREE. Search and download functionalities are using the official Maven repository.

BusinessDomainDsl.IntegerProperty Maven / Gradle / Ivy

The newest version!
/**
 * 
 * 
 *
 * $Id$
 */
package BusinessDomainDsl;


/**
 * 
 * A representation of the model object 'Integer Property'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link BusinessDomainDsl.IntegerProperty#getMinValue Min Value}
  • *
  • {@link BusinessDomainDsl.IntegerProperty#getMaxValue Max Value}
  • *
  • {@link BusinessDomainDsl.IntegerProperty#getDefaultValue Default Value}
  • *
*

* * @see BusinessDomainDsl.BusinessDomainDslPackage#getIntegerProperty() * @model * @generated */ public interface IntegerProperty extends Property { /** * Returns the value of the 'Min Value' attribute. * The default value is "-2147483648". * *

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

* * @return the value of the 'Min Value' attribute. * @see #setMinValue(int) * @see BusinessDomainDsl.BusinessDomainDslPackage#getIntegerProperty_MinValue() * @model default="-2147483648" * @generated */ int getMinValue(); /** * Sets the value of the '{@link BusinessDomainDsl.IntegerProperty#getMinValue Min Value}' attribute. * * * @param value the new value of the 'Min Value' attribute. * @see #getMinValue() * @generated */ void setMinValue(int value); /** * Returns the value of the 'Max Value' attribute. * The default value is "2147483647". * *

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

* * @return the value of the 'Max Value' attribute. * @see #setMaxValue(int) * @see BusinessDomainDsl.BusinessDomainDslPackage#getIntegerProperty_MaxValue() * @model default="2147483647" * @generated */ int getMaxValue(); /** * Sets the value of the '{@link BusinessDomainDsl.IntegerProperty#getMaxValue Max Value}' attribute. * * * @param value the new value of the 'Max Value' attribute. * @see #getMaxValue() * @generated */ void setMaxValue(int value); /** * Returns the value of the 'Default Value' attribute. * *

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

* * @return the value of the 'Default Value' attribute. * @see #setDefaultValue(int) * @see BusinessDomainDsl.BusinessDomainDslPackage#getIntegerProperty_DefaultValue() * @model * @generated */ int getDefaultValue(); /** * Sets the value of the '{@link BusinessDomainDsl.IntegerProperty#getDefaultValue Default Value}' attribute. * * * @param value the new value of the 'Default Value' attribute. * @see #getDefaultValue() * @generated */ void setDefaultValue(int value); } // IntegerProperty




© 2015 - 2025 Weber Informatics LLC | Privacy Policy