org.openxma.dsl.ddl.ddlDsl.SqlCharacter Maven / Gradle / Ivy
/**
*
*
*
*/
package org.openxma.dsl.ddl.ddlDsl;
/**
*
* A representation of the model object 'Sql Character'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.ddl.ddlDsl.SqlCharacter#isNational National}
* - {@link org.openxma.dsl.ddl.ddlDsl.SqlCharacter#getSize Size}
*
*
*
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getSqlCharacter()
* @model
* @generated
*/
public interface SqlCharacter extends SqlDataType
{
/**
* Returns the value of the 'National' attribute.
*
*
* If the meaning of the 'National' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'National' attribute.
* @see #setNational(boolean)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getSqlCharacter_National()
* @model
* @generated
*/
boolean isNational();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.SqlCharacter#isNational National}' attribute.
*
*
* @param value the new value of the 'National' attribute.
* @see #isNational()
* @generated
*/
void setNational(boolean value);
/**
* Returns the value of the 'Size' attribute.
*
*
* If the meaning of the 'Size' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Size' attribute.
* @see #setSize(int)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getSqlCharacter_Size()
* @model
* @generated
*/
int getSize();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.SqlCharacter#getSize Size}' attribute.
*
*
* @param value the new value of the 'Size' attribute.
* @see #getSize()
* @generated
*/
void setSize(int value);
} // SqlCharacter