01: /*
02: * JFolder, Copyright 2001-2006 Gary Steinmetz
03: *
04: * Distributable under LGPL license.
05: * See terms of license at gnu.org.
06: */
07:
08: package org.jfolder.workflow.query;
09:
10: //base classes
11: import java.util.ArrayList;
12:
13: //project specific classes
14:
15: //other classes
16:
17: public class NotQC implements QueryContainer {
18:
19: private QueryContainer subQuery = null;
20:
21: private NotQC() {
22: }
23:
24: public final static QueryContainer createQuery(
25: QueryContainer inQuery) {
26:
27: NotQC outValue = new NotQC();
28:
29: outValue.subQuery = inQuery;
30:
31: return outValue;
32: }
33:
34: //public void prepareQuery(StringBuffer inSb, ArrayList inParameters,
35: // QueryVendor inQv) {
36: //
37: // inQv.prepareQuery(inSb, inParameters, this);
38: //}
39:
40: public QueryContainer getSubQuery() {
41: return this.subQuery;
42: }
43: }
|