org.openxma.dsl.ddl.ddlDsl.SqlNumber Maven / Gradle / Ivy
/**
*
*
*
*/
package org.openxma.dsl.ddl.ddlDsl;
/**
*
* A representation of the model object 'Sql Number'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.ddl.ddlDsl.SqlNumber#isHasPrecision Has Precision}
* - {@link org.openxma.dsl.ddl.ddlDsl.SqlNumber#getPrecision Precision}
* - {@link org.openxma.dsl.ddl.ddlDsl.SqlNumber#getScale Scale}
*
*
*
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getSqlNumber()
* @model
* @generated
*/
public interface SqlNumber extends SqlDataType
{
/**
* Returns the value of the 'Has Precision' attribute.
*
*
* If the meaning of the 'Has Precision' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Has Precision' attribute.
* @see #setHasPrecision(boolean)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getSqlNumber_HasPrecision()
* @model
* @generated
*/
boolean isHasPrecision();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.SqlNumber#isHasPrecision Has Precision}' attribute.
*
*
* @param value the new value of the 'Has Precision' attribute.
* @see #isHasPrecision()
* @generated
*/
void setHasPrecision(boolean value);
/**
* Returns the value of the 'Precision' attribute.
*
*
* If the meaning of the 'Precision' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Precision' attribute.
* @see #setPrecision(int)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getSqlNumber_Precision()
* @model
* @generated
*/
int getPrecision();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.SqlNumber#getPrecision Precision}' attribute.
*
*
* @param value the new value of the 'Precision' attribute.
* @see #getPrecision()
* @generated
*/
void setPrecision(int value);
/**
* Returns the value of the 'Scale' attribute.
*
*
* If the meaning of the 'Scale' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Scale' attribute.
* @see #setScale(int)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getSqlNumber_Scale()
* @model
* @generated
*/
int getScale();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.SqlNumber#getScale Scale}' attribute.
*
*
* @param value the new value of the 'Scale' attribute.
* @see #getScale()
* @generated
*/
void setScale(int value);
} // SqlNumber