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

org.openxma.dsl.dom.model.InsertStatement Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
/**
 * 
 * 
 *
 * $Id$
 */
package org.openxma.dsl.dom.model;

import org.eclipse.emf.common.util.EList;

/**
 * 
 * A representation of the model object 'Insert Statement'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.openxma.dsl.dom.model.InsertStatement#getEntity Entity}
  • *
  • {@link org.openxma.dsl.dom.model.InsertStatement#getExpression Expression}
  • *
  • {@link org.openxma.dsl.dom.model.InsertStatement#getSelectStatement Select Statement}
  • *
*

* * @see org.openxma.dsl.dom.DomPackage#getInsertStatement() * @model * @generated */ public interface InsertStatement extends QlStatement { /** * Returns the value of the 'Entity' reference. * *

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

* * @return the value of the 'Entity' reference. * @see #setEntity(Entity) * @see org.openxma.dsl.dom.DomPackage#getInsertStatement_Entity() * @model * @generated */ Entity getEntity(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.InsertStatement#getEntity Entity}' reference. * * * @param value the new value of the 'Entity' reference. * @see #getEntity() * @generated */ void setEntity(Entity value); /** * Returns the value of the 'Expression' containment reference list. * The list contents are of type {@link org.openxma.dsl.dom.model.Expression}. * *

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

* * @return the value of the 'Expression' containment reference list. * @see org.openxma.dsl.dom.DomPackage#getInsertStatement_Expression() * @model containment="true" * @generated */ EList getExpression(); /** * Returns the value of the 'Select Statement' containment reference. * *

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

* * @return the value of the 'Select Statement' containment reference. * @see #setSelectStatement(SelectStatement) * @see org.openxma.dsl.dom.DomPackage#getInsertStatement_SelectStatement() * @model containment="true" * @generated */ SelectStatement getSelectStatement(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.InsertStatement#getSelectStatement Select Statement}' containment reference. * * * @param value the new value of the 'Select Statement' containment reference. * @see #getSelectStatement() * @generated */ void setSelectStatement(SelectStatement value); } // InsertStatement




© 2015 - 2024 Weber Informatics LLC | Privacy Policy