org.eclipse.wst.rdb.internal.models.sql.tables
Interface DerivedTable

All Superinterfaces:
org.eclipse.emf.ecore.EModelElement, org.eclipse.emf.ecore.ENamedElement, org.eclipse.emf.ecore.EObject, org.eclipse.emf.common.notify.Notifier, SQLObject, Table
All Known Subinterfaces:
ViewTable
All Known Implementing Classes:
DerivedTableImpl

public interface DerivedTable
extends Table

A representation of the model object 'Derived Table'. 4.14 Tables A table is a collection of rows having one or more columns. [...] A table is either a base table, a derived table, or a transient table. A base table is either a persistent base table, a global temporary table, a created local temporary table, or a declared local temporary table. A derived table is a table derived directly or indirectly from one or more other tables by the evaluation of a whose result has an element type that is a row type. The values of a derived table are derived from the values of the underlying tables when the is evaluated. A derived table descriptor describes a derived table. In addition to the components of every table descriptor, a derived table descriptor includes: - The that defines how the table is to be derived. - An indication of whether the derived table is updatable or not.

The following features are supported:

See Also:
SQLTablesPackage.getDerivedTable()

Method Summary
 QueryExpression getQueryExpression()
          Returns the value of the 'Query Expression' containment reference.
 void setQueryExpression(QueryExpression value)
          Sets the value of the 'Query Expression' containment reference.
 
Methods inherited from interface org.eclipse.wst.rdb.internal.models.sql.tables.Table
getColumns, getIndex, getSchema, getSelfRefColumnGeneration, getSubtables, getSupertable, getTriggers, getUdt, isInsertable, isUpdatable, setSchema, setSelfRefColumnGeneration, setSupertable, setUdt
 
Methods inherited from interface org.eclipse.wst.rdb.internal.models.sql.schema.SQLObject
addEAnnotation, addEAnnotationDetail, getDependencies, getDescription, getEAnnotation, getEAnnotationDetail, getLabel, removeEAnnotationDetail, setAnnotationDetail, setDescription, setLabel
 
Methods inherited from interface org.eclipse.emf.ecore.ENamedElement
getName, setName
 
Methods inherited from interface org.eclipse.emf.ecore.EModelElement
getEAnnotations
 
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eIsProxy, eIsSet, eResource, eSet, eUnset
 
Methods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
 

Method Detail

getQueryExpression

public QueryExpression getQueryExpression()
Returns the value of the 'Query Expression' containment reference.

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

Returns:
the value of the 'Query Expression' containment reference.
See Also:
setQueryExpression(QueryExpression), SQLTablesPackage.getDerivedTable_QueryExpression()

setQueryExpression

public void setQueryExpression(QueryExpression value)
Sets the value of the 'Query Expression' containment reference.
Parameters:
value - the new value of the 'Query Expression' containment reference.
See Also:
getQueryExpression()