All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openxma.dsl.ddl.ddlDsl.Alter Maven / Gradle / Ivy

/**
 * 
 * 
 *
 */
package org.openxma.dsl.ddl.ddlDsl;


/**
 * 
 * A representation of the model object 'Alter'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.openxma.dsl.ddl.ddlDsl.Alter#getTable Table}
  • *
  • {@link org.openxma.dsl.ddl.ddlDsl.Alter#getAction Action}
  • *
*

* * @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getAlter() * @model * @generated */ public interface Alter extends DdlStatement { /** * Returns the value of the 'Table' reference. * *

* If the meaning of the 'Table' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Table' reference. * @see #setTable(CreateTable) * @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getAlter_Table() * @model * @generated */ CreateTable getTable(); /** * Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.Alter#getTable Table}' reference. * * * @param value the new value of the 'Table' reference. * @see #getTable() * @generated */ void setTable(CreateTable value); /** * Returns the value of the 'Action' containment reference. * *

* If the meaning of the 'Action' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Action' containment reference. * @see #setAction(AlterTableAction) * @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getAlter_Action() * @model containment="true" * @generated */ AlterTableAction getAction(); /** * Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.Alter#getAction Action}' containment reference. * * * @param value the new value of the 'Action' containment reference. * @see #getAction() * @generated */ void setAction(AlterTableAction value); } // Alter




© 2015 - 2024 Weber Informatics LLC | Privacy Policy