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

org.openxma.dsl.dom.model.UpdateStatement 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 'Update Statement'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.openxma.dsl.dom.model.UpdateStatement#isVersioned Versioned}
  • *
  • {@link org.openxma.dsl.dom.model.UpdateStatement#getEntity Entity}
  • *
  • {@link org.openxma.dsl.dom.model.UpdateStatement#getName Name}
  • *
  • {@link org.openxma.dsl.dom.model.UpdateStatement#getAssignment Assignment}
  • *
  • {@link org.openxma.dsl.dom.model.UpdateStatement#getWhere Where}
  • *
*

* * @see org.openxma.dsl.dom.DomPackage#getUpdateStatement() * @model * @generated */ public interface UpdateStatement extends QlStatement { /** * Returns the value of the 'Versioned' attribute. * *

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

* * @return the value of the 'Versioned' attribute. * @see #setVersioned(boolean) * @see org.openxma.dsl.dom.DomPackage#getUpdateStatement_Versioned() * @model * @generated */ boolean isVersioned(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.UpdateStatement#isVersioned Versioned}' attribute. * * * @param value the new value of the 'Versioned' attribute. * @see #isVersioned() * @generated */ void setVersioned(boolean value); /** * 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#getUpdateStatement_Entity() * @model * @generated */ Entity getEntity(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.UpdateStatement#getEntity Entity}' reference. * * * @param value the new value of the 'Entity' reference. * @see #getEntity() * @generated */ void setEntity(Entity value); /** * 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.dom.DomPackage#getUpdateStatement_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.UpdateStatement#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Assignment' containment reference list. * The list contents are of type {@link org.openxma.dsl.dom.model.PropertyAssignment}. * *

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

* * @return the value of the 'Assignment' containment reference list. * @see org.openxma.dsl.dom.DomPackage#getUpdateStatement_Assignment() * @model containment="true" * @generated */ EList getAssignment(); /** * Returns the value of the 'Where' containment reference. * *

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

* * @return the value of the 'Where' containment reference. * @see #setWhere(Expression) * @see org.openxma.dsl.dom.DomPackage#getUpdateStatement_Where() * @model containment="true" * @generated */ Expression getWhere(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.UpdateStatement#getWhere Where}' containment reference. * * * @param value the new value of the 'Where' containment reference. * @see #getWhere() * @generated */ void setWhere(Expression value); } // UpdateStatement




© 2015 - 2024 Weber Informatics LLC | Privacy Policy