Uses of Interface
org.eclipse.datatools.modelbase.sql.query.QueryCombined

Packages that use QueryCombined
org.eclipse.datatools.modelbase.sql.query   
org.eclipse.datatools.modelbase.sql.query.helper   
org.eclipse.datatools.modelbase.sql.query.util   
org.eclipse.datatools.sqltools.parsers.sql.query   
org.eclipse.datatools.sqltools.sqlbuilder.actions   
org.eclipse.datatools.sqltools.sqlbuilder.model   
org.eclipse.datatools.sqltools.sqlbuilder.views.fullselect   
 

Uses of QueryCombined in org.eclipse.datatools.modelbase.sql.query
 

Methods in org.eclipse.datatools.modelbase.sql.query that return QueryCombined
 QueryCombined SQLQueryModelFactory.createQueryCombined()
          Returns a new object of class 'Query Combined'.
 QueryCombined QueryExpressionBody.getCombinedLeft()
          Returns the value of the 'Combined Left' container reference.
 QueryCombined QueryExpressionBody.getCombinedRight()
          Returns the value of the 'Combined Right' container reference.
 

Methods in org.eclipse.datatools.modelbase.sql.query with parameters of type QueryCombined
 void QueryExpressionBody.setCombinedLeft(QueryCombined value)
          Sets the value of the 'Combined Left' container reference.
 void QueryExpressionBody.setCombinedRight(QueryCombined value)
          Sets the value of the 'Combined Right' container reference.
 

Uses of QueryCombined in org.eclipse.datatools.modelbase.sql.query.helper
 

Methods in org.eclipse.datatools.modelbase.sql.query.helper that return QueryCombined
static QueryCombined StatementHelper.createQueryCombined()
          Creates a QueryCombined
 

Uses of QueryCombined in org.eclipse.datatools.modelbase.sql.query.util
 

Methods in org.eclipse.datatools.modelbase.sql.query.util with parameters of type QueryCombined
 java.lang.Object SQLQueryModelSwitch.caseQueryCombined(QueryCombined object)
          Returns the result of interpreting the object as an instance of 'Query Combined'.
 

Uses of QueryCombined in org.eclipse.datatools.sqltools.parsers.sql.query
 

Methods in org.eclipse.datatools.sqltools.parsers.sql.query that return QueryCombined
 QueryCombined SQLQueryParserFactory.createQueryCombined(QueryExpressionBody aLeftQuery, int combinedOperator, QueryExpressionBody aRightQuery)
           
 QueryCombined SQLQueryParserFactory.createQueryCombined(QueryExpressionBody aLeftQuery, int combinedOperator, QueryExpressionBody aRightQuery, java.util.List aSortSpecList, int aRowFetchLimit)
           
 

Uses of QueryCombined in org.eclipse.datatools.sqltools.sqlbuilder.actions
 

Methods in org.eclipse.datatools.sqltools.sqlbuilder.actions with parameters of type QueryCombined
 void ChangeSetOperatorAction.setElement(QueryCombined queryCombined)
          Sets the "query combined" (a query with UNION, INTERSECT, etc.
 

Uses of QueryCombined in org.eclipse.datatools.sqltools.sqlbuilder.model
 

Methods in org.eclipse.datatools.sqltools.sqlbuilder.model with parameters of type QueryCombined
static boolean SelectHelper.hasChild(QueryCombined node)
          Checks if the given QueryCombined object has either a left side child or a right side child.
static boolean SelectHelper.isNodeFull(QueryCombined node)
          Checks if the given QueryCombined object's left and right children are set.
static void SelectHelper.setChildForQueryCombined(QueryCombined combined, QueryExpressionBody child)
          Sets the given QueryExpressionBody object as a child of the given Querycombined object.
 

Uses of QueryCombined in org.eclipse.datatools.sqltools.sqlbuilder.views.fullselect
 

Constructors in org.eclipse.datatools.sqltools.sqlbuilder.views.fullselect with parameters of type QueryCombined
FullSelectTableElement(QueryExpressionBody query, QueryCombinedOperator opr, QueryCombined parentNode)