org.openxma.dsl.ddl.ddlDsl.ForeignKeyConstraint Maven / Gradle / Ivy
The newest version!
/**
*
*
*
*/
package org.openxma.dsl.ddl.ddlDsl;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object 'Foreign Key Constraint'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.ddl.ddlDsl.ForeignKeyConstraint#getColumns Columns}
* - {@link org.openxma.dsl.ddl.ddlDsl.ForeignKeyConstraint#getReference Reference}
*
*
*
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getForeignKeyConstraint()
* @model
* @generated
*/
public interface ForeignKeyConstraint extends Constraint
{
/**
* Returns the value of the 'Columns' reference list.
* The list contents are of type {@link org.openxma.dsl.ddl.ddlDsl.Column}.
*
*
* If the meaning of the 'Columns' reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Columns' reference list.
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getForeignKeyConstraint_Columns()
* @model
* @generated
*/
EList getColumns();
/**
* 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#getForeignKeyConstraint_Reference()
* @model containment="true"
* @generated
*/
ReferenceClause getReference();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.ForeignKeyConstraint#getReference Reference}' containment reference.
*
*
* @param value the new value of the 'Reference' containment reference.
* @see #getReference()
* @generated
*/
void setReference(ReferenceClause value);
} // ForeignKeyConstraint