org.openxma.dsl.ddl.ddlDsl.AddTableConstraint Maven / Gradle / Ivy
The newest version!
/**
*
*
*
*/
package org.openxma.dsl.ddl.ddlDsl;
/**
*
* A representation of the model object 'Add Table Constraint'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.ddl.ddlDsl.AddTableConstraint#getName Name}
*
*
*
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getAddTableConstraint()
* @model
* @generated
*/
public interface AddTableConstraint extends AlterTableAction
{
/**
* Returns the value of the 'Name' attribute.
*
*
* If the meaning of the 'Name' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getAddTableConstraint_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.AddTableConstraint#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
} // AddTableConstraint