WHERE
Please notice that this class does not implements FilteredQueryAPI, it does need to @author Paolo Proni @version 1.0 @since 1.0
9293949596979899100
* a <code>WHERE</code> clause. */ private FilteredQuery getFilteredQuery() { // Lazy constructor if (this.filteredQuery == null) this.filteredQuery = new FilteredQuery(); return this.filteredQuery; }
7778798081828384
* @return <code>Where</code> component */ private synchronized FilteredQuery getFilteredQuery() { // lazy constructor if (this.filteredQuery == null) this.filteredQuery = new FilteredQuery(); return this.filteredQuery; }