Package org.apache.ojb.jdo.jdoql

Examples of org.apache.ojb.jdo.jdoql.QueryParsingHelper


     * @param filter The filter expression
     */
    public void setFilter(String filter) throws JDOUserException
    {
        _filterString     = filter;
        _filterExpression = new QueryParsingHelper().parseFilter(filter);
        _needsCompilation = true;
    }
View Full Code Here


     * @param imports The import declarations
     */
    public void declareImports(String imports) throws JDOUserException
    {
        _importString     = imports;
        _imports          = new QueryParsingHelper().parseImports(imports);
        _needsCompilation = true;
    }
View Full Code Here

     * @param params The parameter declarations
     */
    public void declareParameters(String params) throws JDOUserException
    {
        _parameterString  = params;
        _parameters       = new QueryParsingHelper().parseParameters(params);
        _needsCompilation = true;
    }
View Full Code Here

     * @param variables The variable declarations
     */
    public void declareVariables(String variables) throws JDOUserException
    {
        _variableString   = variables;
        _variables        = new QueryParsingHelper().parseVariables(variables);
        _needsCompilation = true;
    }
View Full Code Here

     * @param orderings The ordering specifications
     */
    public void setOrdering(String orderings) throws JDOUserException
    {
        _orderingString   = orderings;
        _orderings        = new QueryParsingHelper().parseOrderings(orderings);
        _needsCompilation = true;
    }
View Full Code Here

     * @param filter The filter expression
     */
    public void setFilter(String filter) throws JDOUserException
    {
        _filterString     = filter;
        _filterExpression = new QueryParsingHelper().parseFilter(filter);
        _needsCompilation = true;
    }
View Full Code Here

     * @param imports The import declarations
     */
    public void declareImports(String imports) throws JDOUserException
    {
        _importString     = imports;
        _imports          = new QueryParsingHelper().parseImports(imports);
        _needsCompilation = true;
    }
View Full Code Here

     * @param params The parameter declarations
     */
    public void declareParameters(String params) throws JDOUserException
    {
        _parameterString  = params;
        _parameters       = new QueryParsingHelper().parseParameters(params);
        _needsCompilation = true;
    }
View Full Code Here

     * @param variables The variable declarations
     */
    public void declareVariables(String variables) throws JDOUserException
    {
        _variableString   = variables;
        _variables        = new QueryParsingHelper().parseVariables(variables);
        _needsCompilation = true;
    }
View Full Code Here

     * @param orderings The ordering specifications
     */
    public void setOrdering(String orderings) throws JDOUserException
    {
        _orderingString   = orderings;
        _orderings        = new QueryParsingHelper().parseOrderings(orderings);
        _needsCompilation = true;
    }
View Full Code Here

TOP

Related Classes of org.apache.ojb.jdo.jdoql.QueryParsingHelper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.