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

org.openxma.dsl.dom.model.QueryOperation 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;
import org.openxma.dsl.core.model.IDocumentable;

/**
 * 
 * A representation of the model object 'Query Operation'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.openxma.dsl.dom.model.QueryOperation#getQueryParameters Query Parameters}
  • *
  • {@link org.openxma.dsl.dom.model.QueryOperation#getStatement Statement}
  • *
*

* * @see org.openxma.dsl.dom.DomPackage#getQueryOperation() * @model * @generated */ public interface QueryOperation extends DaoOperation, IDocumentable { /** * Returns the value of the 'Query Parameters' containment reference list. * The list contents are of type {@link org.openxma.dsl.dom.model.QueryParameter}. * *

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

* * @return the value of the 'Query Parameters' containment reference list. * @see org.openxma.dsl.dom.DomPackage#getQueryOperation_QueryParameters() * @model containment="true" * @generated */ EList getQueryParameters(); /** * Returns the value of the 'Statement' containment reference. * *

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

* * @return the value of the 'Statement' containment reference. * @see #setStatement(QlStatement) * @see org.openxma.dsl.dom.DomPackage#getQueryOperation_Statement() * @model containment="true" * @generated */ QlStatement getStatement(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.QueryOperation#getStatement Statement}' containment reference. * * * @param value the new value of the 'Statement' containment reference. * @see #getStatement() * @generated */ void setStatement(QlStatement value); } // QueryOperation




© 2015 - 2024 Weber Informatics LLC | Privacy Policy