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 SysBooleanIsTrueQC implements QueryContainer {
18:
19: private String attrName = null;
20:
21: private SysBooleanIsTrueQC() {
22: }
23:
24: public final static QueryContainer createQuery(String inAttrName) {
25:
26: SysBooleanIsTrueQC outValue = new SysBooleanIsTrueQC();
27:
28: outValue.attrName = inAttrName;
29:
30: return outValue;
31: }
32:
33: //public void prepareQuery(StringBuffer inSb, ArrayList inParameters,
34: // QueryVendor inQv) {
35: //
36: // inQv.prepareQuery(inSb, inParameters, this);
37: //}
38:
39: public String getAttributeName() {
40: return this.attrName;
41: }
42: }
|