org.openxma.dsl.ddl.ddlDsl.Column Maven / Gradle / Ivy
/**
*
*
*
*/
package org.openxma.dsl.ddl.ddlDsl;
/**
*
* A representation of the model object 'Column'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.ddl.ddlDsl.Column#getType Type}
* - {@link org.openxma.dsl.ddl.ddlDsl.Column#isSorted Sorted}
* - {@link org.openxma.dsl.ddl.ddlDsl.Column#getConstraint Constraint}
* - {@link org.openxma.dsl.ddl.ddlDsl.Column#getDefault Default}
* - {@link org.openxma.dsl.ddl.ddlDsl.Column#getReference Reference}
*
*
*
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getColumn()
* @model
* @generated
*/
public interface Column extends TableProperty
{
/**
* Returns the value of the 'Type' containment reference.
*
*
* If the meaning of the 'Type' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Type' containment reference.
* @see #setType(SqlDataType)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getColumn_Type()
* @model containment="true"
* @generated
*/
SqlDataType getType();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.Column#getType Type}' containment reference.
*
*
* @param value the new value of the 'Type' containment reference.
* @see #getType()
* @generated
*/
void setType(SqlDataType value);
/**
* Returns the value of the 'Sorted' attribute.
*
*
* If the meaning of the 'Sorted' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Sorted' attribute.
* @see #setSorted(boolean)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getColumn_Sorted()
* @model
* @generated
*/
boolean isSorted();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.Column#isSorted Sorted}' attribute.
*
*
* @param value the new value of the 'Sorted' attribute.
* @see #isSorted()
* @generated
*/
void setSorted(boolean value);
/**
* Returns the value of the 'Constraint' containment reference.
*
*
* If the meaning of the 'Constraint' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Constraint' containment reference.
* @see #setConstraint(Constraint)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getColumn_Constraint()
* @model containment="true"
* @generated
*/
Constraint getConstraint();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.Column#getConstraint Constraint}' containment reference.
*
*
* @param value the new value of the 'Constraint' containment reference.
* @see #getConstraint()
* @generated
*/
void setConstraint(Constraint value);
/**
* Returns the value of the 'Default' attribute.
*
*
* If the meaning of the 'Default' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Default' attribute.
* @see #setDefault(String)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getColumn_Default()
* @model
* @generated
*/
String getDefault();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.Column#getDefault Default}' attribute.
*
*
* @param value the new value of the 'Default' attribute.
* @see #getDefault()
* @generated
*/
void setDefault(String value);
/**
* Returns the value of the 'Reference' containment reference.
*
*
* If the meaning of the 'Reference' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Reference' containment reference.
* @see #setReference(ReferenceClause)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getColumn_Reference()
* @model containment="true"
* @generated
*/
ReferenceClause getReference();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.Column#getReference Reference}' containment reference.
*
*
* @param value the new value of the 'Reference' containment reference.
* @see #getReference()
* @generated
*/
void setReference(ReferenceClause value);
} // Column