org.openxma.dsl.ddl.ddlDsl.SqlInterval Maven / Gradle / Ivy
/**
*
*
*
*/
package org.openxma.dsl.ddl.ddlDsl;
/**
*
* A representation of the model object 'Sql Interval'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.ddl.ddlDsl.SqlInterval#isYear Year}
* - {@link org.openxma.dsl.ddl.ddlDsl.SqlInterval#isDay Day}
* - {@link org.openxma.dsl.ddl.ddlDsl.SqlInterval#getPrecision Precision}
* - {@link org.openxma.dsl.ddl.ddlDsl.SqlInterval#getSecondsPrecision Seconds Precision}
*
*
*
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getSqlInterval()
* @model
* @generated
*/
public interface SqlInterval extends SqlDateTime
{
/**
* Returns the value of the 'Year' attribute.
*
*
* If the meaning of the 'Year' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Year' attribute.
* @see #setYear(boolean)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getSqlInterval_Year()
* @model
* @generated
*/
boolean isYear();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.SqlInterval#isYear Year}' attribute.
*
*
* @param value the new value of the 'Year' attribute.
* @see #isYear()
* @generated
*/
void setYear(boolean value);
/**
* Returns the value of the 'Day' attribute.
*
*
* If the meaning of the 'Day' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Day' attribute.
* @see #setDay(boolean)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getSqlInterval_Day()
* @model
* @generated
*/
boolean isDay();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.SqlInterval#isDay Day}' attribute.
*
*
* @param value the new value of the 'Day' attribute.
* @see #isDay()
* @generated
*/
void setDay(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#getSqlInterval_Precision()
* @model
* @generated
*/
int getPrecision();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.SqlInterval#getPrecision Precision}' attribute.
*
*
* @param value the new value of the 'Precision' attribute.
* @see #getPrecision()
* @generated
*/
void setPrecision(int value);
/**
* Returns the value of the 'Seconds Precision' attribute.
*
*
* If the meaning of the 'Seconds Precision' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Seconds Precision' attribute.
* @see #setSecondsPrecision(int)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getSqlInterval_SecondsPrecision()
* @model
* @generated
*/
int getSecondsPrecision();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.SqlInterval#getSecondsPrecision Seconds Precision}' attribute.
*
*
* @param value the new value of the 'Seconds Precision' attribute.
* @see #getSecondsPrecision()
* @generated
*/
void setSecondsPrecision(int value);
} // SqlInterval