org.openxma.dsl.ddl.ddlDsl.DropTableConstraint Maven / Gradle / Ivy
/**
*
*
*
*/
package org.openxma.dsl.ddl.ddlDsl;
/**
*
* A representation of the model object 'Drop Table Constraint'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.ddl.ddlDsl.DropTableConstraint#getConstraintRef Constraint Ref}
*
*
*
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getDropTableConstraint()
* @model
* @generated
*/
public interface DropTableConstraint extends AlterTableAction
{
/**
* Returns the value of the 'Constraint Ref' reference.
*
*
* If the meaning of the 'Constraint Ref' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Constraint Ref' reference.
* @see #setConstraintRef(Constraint)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getDropTableConstraint_ConstraintRef()
* @model
* @generated
*/
Constraint getConstraintRef();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.DropTableConstraint#getConstraintRef Constraint Ref}' reference.
*
*
* @param value the new value of the 'Constraint Ref' reference.
* @see #getConstraintRef()
* @generated
*/
void setConstraintRef(Constraint value);
} // DropTableConstraint