public List getExplicitFromElements() { return ASTUtil.collectChildren(this, explicitFromPredicate); }
/** * 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); }
public List getCollectionFetches() { return ASTUtil.collectChildren(this, collectionFetchPredicate); }
/** * 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); }