140141142143144145146147
* @param filter The filter expression */ public void setFilter(String filter) throws JDOUserException { _filterString = filter; _filterExpression = new QueryParsingHelper().parseFilter(filter); _needsCompilation = true; }
163164165166167168169170
* @param imports The import declarations */ public void declareImports(String imports) throws JDOUserException { _importString = imports; _imports = new QueryParsingHelper().parseImports(imports); _needsCompilation = true; }
185186187188189190191192
* @param params The parameter declarations */ public void declareParameters(String params) throws JDOUserException { _parameterString = params; _parameters = new QueryParsingHelper().parseParameters(params); _needsCompilation = true; }
219220221222223224225226
* @param variables The variable declarations */ public void declareVariables(String variables) throws JDOUserException { _variableString = variables; _variables = new QueryParsingHelper().parseVariables(variables); _needsCompilation = true; }
253254255256257258259260
* @param orderings The ordering specifications */ public void setOrdering(String orderings) throws JDOUserException { _orderingString = orderings; _orderings = new QueryParsingHelper().parseOrderings(orderings); _needsCompilation = true; }