org.openxma.dsl.ddl.ddlDsl.AlterTableAction Maven / Gradle / Ivy
/**
*
*
*
*/
package org.openxma.dsl.ddl.ddlDsl;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Alter Table Action'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.ddl.ddlDsl.AlterTableAction#getConstraint Constraint}
*
*
*
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getAlterTableAction()
* @model
* @generated
*/
public interface AlterTableAction extends EObject
{
/**
* 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#getAlterTableAction_Constraint()
* @model containment="true"
* @generated
*/
Constraint getConstraint();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.AlterTableAction#getConstraint Constraint}' containment reference.
*
*
* @param value the new value of the 'Constraint' containment reference.
* @see #getConstraint()
* @generated
*/
void setConstraint(Constraint value);
} // AlterTableAction