Beispiel #1
0
 public List getExplicitFromElements() {
   return ASTUtil.collectChildren(this, explicitFromPredicate);
 }
Beispiel #2
0
 /**
  * Returns the list of from elements that will be part of the result set.
  *
  * @return the list of from elements that will be part of the result set.
  */
 public List getProjectionList() {
   return ASTUtil.collectChildren(this, projectionListPredicate);
 }
Beispiel #3
0
 public List getCollectionFetches() {
   return ASTUtil.collectChildren(this, collectionFetchPredicate);
 }
Beispiel #4
0
 /**
  * Returns the list of from elements in order.
  *
  * @return the list of from elements (instances of FromElement).
  */
 public List getFromElements() {
   return ASTUtil.collectChildren(this, fromElementPredicate);
 }