OSDN Git Service

"https://svn.sourceforge.jp/svnroot/ea2ddl" にプロジェクト "ea2ddl-dao" を共用
[ea2ddl/ea2ddl.git] / ea2ddl-dao / src / main / java / jp / sourceforge / ea2ddl / dao / cbean / cq / bs / BsTObjectCQ.java
1 package jp.sourceforge.ea2ddl.dao.cbean.cq.bs;\r
2 \r
3 import java.util.Map;\r
4 \r
5 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.*;\r
6 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.cvalue.ConditionValue;\r
7 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.sqlclause.SqlClause;\r
8 import jp.sourceforge.ea2ddl.dao.cbean.cq.ciq.*;\r
9 import jp.sourceforge.ea2ddl.dao.cbean.cq.*;\r
10 \r
11 /**\r
12  * The base condition-query of t_object.\r
13  * @author DBFlute(AutoGenerator)\r
14  */
15 @SuppressWarnings("unchecked")\r
16 public class BsTObjectCQ extends AbstractBsTObjectCQ {\r
17 \r
18     // ===================================================================================\r
19     //                                                                           Attribute\r
20     //                                                                           =========\r
21     protected TObjectCIQ _inlineQuery;\r
22 \r
23     // ===================================================================================\r
24     //                                                                         Constructor\r
25     //                                                                         ===========\r
26     public BsTObjectCQ(ConditionQuery childQuery, SqlClause sqlClause, String aliasName, int nestLevel) {\r
27         super(childQuery, sqlClause, aliasName, nestLevel);\r
28     }\r
29 \r
30     // ===================================================================================\r
31     //                                                                              Inline\r
32     //                                                                              ======\r
33     /**\r
34      * Prepare inline query. <br />\r
35      * {select ... from ... left outer join (select * from t_object) where abc = [abc] ...}\r
36      * @return Inline query. (NotNull)\r
37      */\r
38     public TObjectCIQ inline() {\r
39         if (_inlineQuery == null) {\r
40             _inlineQuery = new TObjectCIQ(getChildQuery(), getSqlClause(), getAliasName(), getNestLevel(), this);\r
41         }\r
42         _inlineQuery.xsetOnClauseInline(false); return _inlineQuery;\r
43     }\r
44     \r
45     /**\r
46      * Prepare on-clause query. <br />\r
47      * {select ... from ... left outer join t_object on ... and abc = [abc] ...}\r
48      * @return On-clause query. (NotNull)\r
49      */\r
50     public TObjectCIQ on() {\r
51         if (isBaseQuery(this)) { throw new UnsupportedOperationException("Unsupported onClause of Base Table!"); }\r
52         TObjectCIQ inlineQuery = inline(); inlineQuery.xsetOnClauseInline(true); return inlineQuery;\r
53     }\r
54 \r
55     // ===================================================================================\r
56     //                                                                               Query\r
57     //                                                                               =====\r
58 \r
59     protected ConditionValue _objectId;\r
60     public ConditionValue getObjectId() {\r
61         if (_objectId == null) { _objectId = new ConditionValue(); }\r
62         return _objectId;\r
63     }\r
64     protected ConditionValue getCValueObjectId() { return getObjectId(); }\r
65           \r
66     public BsTObjectCQ addOrderBy_ObjectId_Asc() { regOBA("Object_ID"); return this; }\r
67     public BsTObjectCQ addOrderBy_ObjectId_Desc() { regOBD("Object_ID"); return this; }\r
68 \r
69     protected ConditionValue _objectType;\r
70     public ConditionValue getObjectType() {\r
71         if (_objectType == null) { _objectType = new ConditionValue(); }\r
72         return _objectType;\r
73     }\r
74     protected ConditionValue getCValueObjectType() { return getObjectType(); }\r
75     \r
76     public BsTObjectCQ addOrderBy_ObjectType_Asc() { regOBA("Object_Type"); return this; }\r
77     public BsTObjectCQ addOrderBy_ObjectType_Desc() { regOBD("Object_Type"); return this; }\r
78 \r
79     protected ConditionValue _diagramId;\r
80     public ConditionValue getDiagramId() {\r
81         if (_diagramId == null) { _diagramId = new ConditionValue(); }\r
82         return _diagramId;\r
83     }\r
84     protected ConditionValue getCValueDiagramId() { return getDiagramId(); }\r
85           \r
86     public BsTObjectCQ addOrderBy_DiagramId_Asc() { regOBA("Diagram_ID"); return this; }\r
87     public BsTObjectCQ addOrderBy_DiagramId_Desc() { regOBD("Diagram_ID"); return this; }\r
88 \r
89     protected ConditionValue _name;\r
90     public ConditionValue getName() {\r
91         if (_name == null) { _name = new ConditionValue(); }\r
92         return _name;\r
93     }\r
94     protected ConditionValue getCValueName() { return getName(); }\r
95     \r
96     public BsTObjectCQ addOrderBy_Name_Asc() { regOBA("Name"); return this; }\r
97     public BsTObjectCQ addOrderBy_Name_Desc() { regOBD("Name"); return this; }\r
98 \r
99     protected ConditionValue _alias;\r
100     public ConditionValue getAlias() {\r
101         if (_alias == null) { _alias = new ConditionValue(); }\r
102         return _alias;\r
103     }\r
104     protected ConditionValue getCValueAlias() { return getAlias(); }\r
105     \r
106     public BsTObjectCQ addOrderBy_Alias_Asc() { regOBA("Alias"); return this; }\r
107     public BsTObjectCQ addOrderBy_Alias_Desc() { regOBD("Alias"); return this; }\r
108 \r
109     protected ConditionValue _author;\r
110     public ConditionValue getAuthor() {\r
111         if (_author == null) { _author = new ConditionValue(); }\r
112         return _author;\r
113     }\r
114     protected ConditionValue getCValueAuthor() { return getAuthor(); }\r
115     \r
116     public BsTObjectCQ addOrderBy_Author_Asc() { regOBA("Author"); return this; }\r
117     public BsTObjectCQ addOrderBy_Author_Desc() { regOBD("Author"); return this; }\r
118 \r
119     protected ConditionValue _version;\r
120     public ConditionValue getVersion() {\r
121         if (_version == null) { _version = new ConditionValue(); }\r
122         return _version;\r
123     }\r
124     protected ConditionValue getCValueVersion() { return getVersion(); }\r
125     \r
126     public BsTObjectCQ addOrderBy_Version_Asc() { regOBA("Version"); return this; }\r
127     public BsTObjectCQ addOrderBy_Version_Desc() { regOBD("Version"); return this; }\r
128 \r
129     protected ConditionValue _note;\r
130     public ConditionValue getNote() {\r
131         if (_note == null) { _note = new ConditionValue(); }\r
132         return _note;\r
133     }\r
134     protected ConditionValue getCValueNote() { return getNote(); }\r
135     \r
136     public BsTObjectCQ addOrderBy_Note_Asc() { regOBA("Note"); return this; }\r
137     public BsTObjectCQ addOrderBy_Note_Desc() { regOBD("Note"); return this; }\r
138 \r
139     protected ConditionValue _packageId;\r
140     public ConditionValue getPackageId() {\r
141         if (_packageId == null) { _packageId = new ConditionValue(); }\r
142         return _packageId;\r
143     }\r
144     protected ConditionValue getCValuePackageId() { return getPackageId(); }\r
145           \r
146     public BsTObjectCQ addOrderBy_PackageId_Asc() { regOBA("Package_ID"); return this; }\r
147     public BsTObjectCQ addOrderBy_PackageId_Desc() { regOBD("Package_ID"); return this; }\r
148 \r
149     protected ConditionValue _stereotype;\r
150     public ConditionValue getStereotype() {\r
151         if (_stereotype == null) { _stereotype = new ConditionValue(); }\r
152         return _stereotype;\r
153     }\r
154     protected ConditionValue getCValueStereotype() { return getStereotype(); }\r
155     \r
156     public BsTObjectCQ addOrderBy_Stereotype_Asc() { regOBA("Stereotype"); return this; }\r
157     public BsTObjectCQ addOrderBy_Stereotype_Desc() { regOBD("Stereotype"); return this; }\r
158 \r
159     protected ConditionValue _ntype;\r
160     public ConditionValue getNtype() {\r
161         if (_ntype == null) { _ntype = new ConditionValue(); }\r
162         return _ntype;\r
163     }\r
164     protected ConditionValue getCValueNtype() { return getNtype(); }\r
165           \r
166     public BsTObjectCQ addOrderBy_Ntype_Asc() { regOBA("NType"); return this; }\r
167     public BsTObjectCQ addOrderBy_Ntype_Desc() { regOBD("NType"); return this; }\r
168 \r
169     protected ConditionValue _complexity;\r
170     public ConditionValue getComplexity() {\r
171         if (_complexity == null) { _complexity = new ConditionValue(); }\r
172         return _complexity;\r
173     }\r
174     protected ConditionValue getCValueComplexity() { return getComplexity(); }\r
175     \r
176     public BsTObjectCQ addOrderBy_Complexity_Asc() { regOBA("Complexity"); return this; }\r
177     public BsTObjectCQ addOrderBy_Complexity_Desc() { regOBD("Complexity"); return this; }\r
178 \r
179     protected ConditionValue _effort;\r
180     public ConditionValue getEffort() {\r
181         if (_effort == null) { _effort = new ConditionValue(); }\r
182         return _effort;\r
183     }\r
184     protected ConditionValue getCValueEffort() { return getEffort(); }\r
185           \r
186     public BsTObjectCQ addOrderBy_Effort_Asc() { regOBA("Effort"); return this; }\r
187     public BsTObjectCQ addOrderBy_Effort_Desc() { regOBD("Effort"); return this; }\r
188 \r
189     protected ConditionValue _style;\r
190     public ConditionValue getStyle() {\r
191         if (_style == null) { _style = new ConditionValue(); }\r
192         return _style;\r
193     }\r
194     protected ConditionValue getCValueStyle() { return getStyle(); }\r
195     \r
196     public BsTObjectCQ addOrderBy_Style_Asc() { regOBA("Style"); return this; }\r
197     public BsTObjectCQ addOrderBy_Style_Desc() { regOBD("Style"); return this; }\r
198 \r
199     protected ConditionValue _backcolor;\r
200     public ConditionValue getBackcolor() {\r
201         if (_backcolor == null) { _backcolor = new ConditionValue(); }\r
202         return _backcolor;\r
203     }\r
204     protected ConditionValue getCValueBackcolor() { return getBackcolor(); }\r
205           \r
206     public BsTObjectCQ addOrderBy_Backcolor_Asc() { regOBA("Backcolor"); return this; }\r
207     public BsTObjectCQ addOrderBy_Backcolor_Desc() { regOBD("Backcolor"); return this; }\r
208 \r
209     protected ConditionValue _borderstyle;\r
210     public ConditionValue getBorderstyle() {\r
211         if (_borderstyle == null) { _borderstyle = new ConditionValue(); }\r
212         return _borderstyle;\r
213     }\r
214     protected ConditionValue getCValueBorderstyle() { return getBorderstyle(); }\r
215           \r
216     public BsTObjectCQ addOrderBy_Borderstyle_Asc() { regOBA("BorderStyle"); return this; }\r
217     public BsTObjectCQ addOrderBy_Borderstyle_Desc() { regOBD("BorderStyle"); return this; }\r
218 \r
219     protected ConditionValue _borderwidth;\r
220     public ConditionValue getBorderwidth() {\r
221         if (_borderwidth == null) { _borderwidth = new ConditionValue(); }\r
222         return _borderwidth;\r
223     }\r
224     protected ConditionValue getCValueBorderwidth() { return getBorderwidth(); }\r
225           \r
226     public BsTObjectCQ addOrderBy_Borderwidth_Asc() { regOBA("BorderWidth"); return this; }\r
227     public BsTObjectCQ addOrderBy_Borderwidth_Desc() { regOBD("BorderWidth"); return this; }\r
228 \r
229     protected ConditionValue _fontcolor;\r
230     public ConditionValue getFontcolor() {\r
231         if (_fontcolor == null) { _fontcolor = new ConditionValue(); }\r
232         return _fontcolor;\r
233     }\r
234     protected ConditionValue getCValueFontcolor() { return getFontcolor(); }\r
235           \r
236     public BsTObjectCQ addOrderBy_Fontcolor_Asc() { regOBA("Fontcolor"); return this; }\r
237     public BsTObjectCQ addOrderBy_Fontcolor_Desc() { regOBD("Fontcolor"); return this; }\r
238 \r
239     protected ConditionValue _bordercolor;\r
240     public ConditionValue getBordercolor() {\r
241         if (_bordercolor == null) { _bordercolor = new ConditionValue(); }\r
242         return _bordercolor;\r
243     }\r
244     protected ConditionValue getCValueBordercolor() { return getBordercolor(); }\r
245           \r
246     public BsTObjectCQ addOrderBy_Bordercolor_Asc() { regOBA("Bordercolor"); return this; }\r
247     public BsTObjectCQ addOrderBy_Bordercolor_Desc() { regOBD("Bordercolor"); return this; }\r
248 \r
249     protected ConditionValue _createddate;\r
250     public ConditionValue getCreateddate() {\r
251         if (_createddate == null) { _createddate = new ConditionValue(); }\r
252         return _createddate;\r
253     }\r
254     protected ConditionValue getCValueCreateddate() { return getCreateddate(); }\r
255     \r
256     public BsTObjectCQ addOrderBy_Createddate_Asc() { regOBA("CreatedDate"); return this; }\r
257     public BsTObjectCQ addOrderBy_Createddate_Desc() { regOBD("CreatedDate"); return this; }\r
258 \r
259     protected ConditionValue _modifieddate;\r
260     public ConditionValue getModifieddate() {\r
261         if (_modifieddate == null) { _modifieddate = new ConditionValue(); }\r
262         return _modifieddate;\r
263     }\r
264     protected ConditionValue getCValueModifieddate() { return getModifieddate(); }\r
265     \r
266     public BsTObjectCQ addOrderBy_Modifieddate_Asc() { regOBA("ModifiedDate"); return this; }\r
267     public BsTObjectCQ addOrderBy_Modifieddate_Desc() { regOBD("ModifiedDate"); return this; }\r
268 \r
269     protected ConditionValue _status;\r
270     public ConditionValue getStatus() {\r
271         if (_status == null) { _status = new ConditionValue(); }\r
272         return _status;\r
273     }\r
274     protected ConditionValue getCValueStatus() { return getStatus(); }\r
275     \r
276     public BsTObjectCQ addOrderBy_Status_Asc() { regOBA("Status"); return this; }\r
277     public BsTObjectCQ addOrderBy_Status_Desc() { regOBD("Status"); return this; }\r
278 \r
279     protected ConditionValue _tagged;\r
280     public ConditionValue getTagged() {\r
281         if (_tagged == null) { _tagged = new ConditionValue(); }\r
282         return _tagged;\r
283     }\r
284     protected ConditionValue getCValueTagged() { return getTagged(); }\r
285           \r
286     public BsTObjectCQ addOrderBy_Tagged_Asc() { regOBA("Tagged"); return this; }\r
287     public BsTObjectCQ addOrderBy_Tagged_Desc() { regOBD("Tagged"); return this; }\r
288 \r
289     protected ConditionValue _pdata1;\r
290     public ConditionValue getPdata1() {\r
291         if (_pdata1 == null) { _pdata1 = new ConditionValue(); }\r
292         return _pdata1;\r
293     }\r
294     protected ConditionValue getCValuePdata1() { return getPdata1(); }\r
295     \r
296     public BsTObjectCQ addOrderBy_Pdata1_Asc() { regOBA("PDATA1"); return this; }\r
297     public BsTObjectCQ addOrderBy_Pdata1_Desc() { regOBD("PDATA1"); return this; }\r
298 \r
299     protected ConditionValue _pdata2;\r
300     public ConditionValue getPdata2() {\r
301         if (_pdata2 == null) { _pdata2 = new ConditionValue(); }\r
302         return _pdata2;\r
303     }\r
304     protected ConditionValue getCValuePdata2() { return getPdata2(); }\r
305     \r
306     public BsTObjectCQ addOrderBy_Pdata2_Asc() { regOBA("PDATA2"); return this; }\r
307     public BsTObjectCQ addOrderBy_Pdata2_Desc() { regOBD("PDATA2"); return this; }\r
308 \r
309     protected ConditionValue _pdata3;\r
310     public ConditionValue getPdata3() {\r
311         if (_pdata3 == null) { _pdata3 = new ConditionValue(); }\r
312         return _pdata3;\r
313     }\r
314     protected ConditionValue getCValuePdata3() { return getPdata3(); }\r
315     \r
316     public BsTObjectCQ addOrderBy_Pdata3_Asc() { regOBA("PDATA3"); return this; }\r
317     public BsTObjectCQ addOrderBy_Pdata3_Desc() { regOBD("PDATA3"); return this; }\r
318 \r
319     protected ConditionValue _pdata4;\r
320     public ConditionValue getPdata4() {\r
321         if (_pdata4 == null) { _pdata4 = new ConditionValue(); }\r
322         return _pdata4;\r
323     }\r
324     protected ConditionValue getCValuePdata4() { return getPdata4(); }\r
325     \r
326     public BsTObjectCQ addOrderBy_Pdata4_Asc() { regOBA("PDATA4"); return this; }\r
327     public BsTObjectCQ addOrderBy_Pdata4_Desc() { regOBD("PDATA4"); return this; }\r
328 \r
329     protected ConditionValue _pdata5;\r
330     public ConditionValue getPdata5() {\r
331         if (_pdata5 == null) { _pdata5 = new ConditionValue(); }\r
332         return _pdata5;\r
333     }\r
334     protected ConditionValue getCValuePdata5() { return getPdata5(); }\r
335     \r
336     public BsTObjectCQ addOrderBy_Pdata5_Asc() { regOBA("PDATA5"); return this; }\r
337     public BsTObjectCQ addOrderBy_Pdata5_Desc() { regOBD("PDATA5"); return this; }\r
338 \r
339     protected ConditionValue _concurrency;\r
340     public ConditionValue getConcurrency() {\r
341         if (_concurrency == null) { _concurrency = new ConditionValue(); }\r
342         return _concurrency;\r
343     }\r
344     protected ConditionValue getCValueConcurrency() { return getConcurrency(); }\r
345     \r
346     public BsTObjectCQ addOrderBy_Concurrency_Asc() { regOBA("Concurrency"); return this; }\r
347     public BsTObjectCQ addOrderBy_Concurrency_Desc() { regOBD("Concurrency"); return this; }\r
348 \r
349     protected ConditionValue _visibility;\r
350     public ConditionValue getVisibility() {\r
351         if (_visibility == null) { _visibility = new ConditionValue(); }\r
352         return _visibility;\r
353     }\r
354     protected ConditionValue getCValueVisibility() { return getVisibility(); }\r
355     \r
356     public BsTObjectCQ addOrderBy_Visibility_Asc() { regOBA("Visibility"); return this; }\r
357     public BsTObjectCQ addOrderBy_Visibility_Desc() { regOBD("Visibility"); return this; }\r
358 \r
359     protected ConditionValue _persistence;\r
360     public ConditionValue getPersistence() {\r
361         if (_persistence == null) { _persistence = new ConditionValue(); }\r
362         return _persistence;\r
363     }\r
364     protected ConditionValue getCValuePersistence() { return getPersistence(); }\r
365     \r
366     public BsTObjectCQ addOrderBy_Persistence_Asc() { regOBA("Persistence"); return this; }\r
367     public BsTObjectCQ addOrderBy_Persistence_Desc() { regOBD("Persistence"); return this; }\r
368 \r
369     protected ConditionValue _cardinality;\r
370     public ConditionValue getCardinality() {\r
371         if (_cardinality == null) { _cardinality = new ConditionValue(); }\r
372         return _cardinality;\r
373     }\r
374     protected ConditionValue getCValueCardinality() { return getCardinality(); }\r
375     \r
376     public BsTObjectCQ addOrderBy_Cardinality_Asc() { regOBA("Cardinality"); return this; }\r
377     public BsTObjectCQ addOrderBy_Cardinality_Desc() { regOBD("Cardinality"); return this; }\r
378 \r
379     protected ConditionValue _gentype;\r
380     public ConditionValue getGentype() {\r
381         if (_gentype == null) { _gentype = new ConditionValue(); }\r
382         return _gentype;\r
383     }\r
384     protected ConditionValue getCValueGentype() { return getGentype(); }\r
385     \r
386     public BsTObjectCQ addOrderBy_Gentype_Asc() { regOBA("GenType"); return this; }\r
387     public BsTObjectCQ addOrderBy_Gentype_Desc() { regOBD("GenType"); return this; }\r
388 \r
389     protected ConditionValue _genfile;\r
390     public ConditionValue getGenfile() {\r
391         if (_genfile == null) { _genfile = new ConditionValue(); }\r
392         return _genfile;\r
393     }\r
394     protected ConditionValue getCValueGenfile() { return getGenfile(); }\r
395     \r
396     public BsTObjectCQ addOrderBy_Genfile_Asc() { regOBA("GenFile"); return this; }\r
397     public BsTObjectCQ addOrderBy_Genfile_Desc() { regOBD("GenFile"); return this; }\r
398 \r
399     protected ConditionValue _header1;\r
400     public ConditionValue getHeader1() {\r
401         if (_header1 == null) { _header1 = new ConditionValue(); }\r
402         return _header1;\r
403     }\r
404     protected ConditionValue getCValueHeader1() { return getHeader1(); }\r
405     \r
406     public BsTObjectCQ addOrderBy_Header1_Asc() { regOBA("Header1"); return this; }\r
407     public BsTObjectCQ addOrderBy_Header1_Desc() { regOBD("Header1"); return this; }\r
408 \r
409     protected ConditionValue _header2;\r
410     public ConditionValue getHeader2() {\r
411         if (_header2 == null) { _header2 = new ConditionValue(); }\r
412         return _header2;\r
413     }\r
414     protected ConditionValue getCValueHeader2() { return getHeader2(); }\r
415     \r
416     public BsTObjectCQ addOrderBy_Header2_Asc() { regOBA("Header2"); return this; }\r
417     public BsTObjectCQ addOrderBy_Header2_Desc() { regOBD("Header2"); return this; }\r
418 \r
419     protected ConditionValue _phase;\r
420     public ConditionValue getPhase() {\r
421         if (_phase == null) { _phase = new ConditionValue(); }\r
422         return _phase;\r
423     }\r
424     protected ConditionValue getCValuePhase() { return getPhase(); }\r
425     \r
426     public BsTObjectCQ addOrderBy_Phase_Asc() { regOBA("Phase"); return this; }\r
427     public BsTObjectCQ addOrderBy_Phase_Desc() { regOBD("Phase"); return this; }\r
428 \r
429     protected ConditionValue _scope;\r
430     public ConditionValue getScope() {\r
431         if (_scope == null) { _scope = new ConditionValue(); }\r
432         return _scope;\r
433     }\r
434     protected ConditionValue getCValueScope() { return getScope(); }\r
435     \r
436     public BsTObjectCQ addOrderBy_Scope_Asc() { regOBA("Scope"); return this; }\r
437     public BsTObjectCQ addOrderBy_Scope_Desc() { regOBD("Scope"); return this; }\r
438 \r
439     protected ConditionValue _genoption;\r
440     public ConditionValue getGenoption() {\r
441         if (_genoption == null) { _genoption = new ConditionValue(); }\r
442         return _genoption;\r
443     }\r
444     protected ConditionValue getCValueGenoption() { return getGenoption(); }\r
445     \r
446     public BsTObjectCQ addOrderBy_Genoption_Asc() { regOBA("GenOption"); return this; }\r
447     public BsTObjectCQ addOrderBy_Genoption_Desc() { regOBD("GenOption"); return this; }\r
448 \r
449     protected ConditionValue _genlinks;\r
450     public ConditionValue getGenlinks() {\r
451         if (_genlinks == null) { _genlinks = new ConditionValue(); }\r
452         return _genlinks;\r
453     }\r
454     protected ConditionValue getCValueGenlinks() { return getGenlinks(); }\r
455     \r
456     public BsTObjectCQ addOrderBy_Genlinks_Asc() { regOBA("GenLinks"); return this; }\r
457     public BsTObjectCQ addOrderBy_Genlinks_Desc() { regOBD("GenLinks"); return this; }\r
458 \r
459     protected ConditionValue _classifier;\r
460     public ConditionValue getClassifier() {\r
461         if (_classifier == null) { _classifier = new ConditionValue(); }\r
462         return _classifier;\r
463     }\r
464     protected ConditionValue getCValueClassifier() { return getClassifier(); }\r
465           \r
466     public BsTObjectCQ addOrderBy_Classifier_Asc() { regOBA("Classifier"); return this; }\r
467     public BsTObjectCQ addOrderBy_Classifier_Desc() { regOBD("Classifier"); return this; }\r
468 \r
469     protected ConditionValue _eaGuid;\r
470     public ConditionValue getEaGuid() {\r
471         if (_eaGuid == null) { _eaGuid = new ConditionValue(); }\r
472         return _eaGuid;\r
473     }\r
474     protected ConditionValue getCValueEaGuid() { return getEaGuid(); }\r
475     \r
476     public BsTObjectCQ addOrderBy_EaGuid_Asc() { regOBA("ea_guid"); return this; }\r
477     public BsTObjectCQ addOrderBy_EaGuid_Desc() { regOBD("ea_guid"); return this; }\r
478 \r
479     protected ConditionValue _parentid;\r
480     public ConditionValue getParentid() {\r
481         if (_parentid == null) { _parentid = new ConditionValue(); }\r
482         return _parentid;\r
483     }\r
484     protected ConditionValue getCValueParentid() { return getParentid(); }\r
485           \r
486     public BsTObjectCQ addOrderBy_Parentid_Asc() { regOBA("ParentID"); return this; }\r
487     public BsTObjectCQ addOrderBy_Parentid_Desc() { regOBD("ParentID"); return this; }\r
488 \r
489     protected ConditionValue _runstate;\r
490     public ConditionValue getRunstate() {\r
491         if (_runstate == null) { _runstate = new ConditionValue(); }\r
492         return _runstate;\r
493     }\r
494     protected ConditionValue getCValueRunstate() { return getRunstate(); }\r
495     \r
496     public BsTObjectCQ addOrderBy_Runstate_Asc() { regOBA("RunState"); return this; }\r
497     public BsTObjectCQ addOrderBy_Runstate_Desc() { regOBD("RunState"); return this; }\r
498 \r
499     protected ConditionValue _classifierGuid;\r
500     public ConditionValue getClassifierGuid() {\r
501         if (_classifierGuid == null) { _classifierGuid = new ConditionValue(); }\r
502         return _classifierGuid;\r
503     }\r
504     protected ConditionValue getCValueClassifierGuid() { return getClassifierGuid(); }\r
505     \r
506     public BsTObjectCQ addOrderBy_ClassifierGuid_Asc() { regOBA("Classifier_guid"); return this; }\r
507     public BsTObjectCQ addOrderBy_ClassifierGuid_Desc() { regOBD("Classifier_guid"); return this; }\r
508 \r
509     protected ConditionValue _tpos;\r
510     public ConditionValue getTpos() {\r
511         if (_tpos == null) { _tpos = new ConditionValue(); }\r
512         return _tpos;\r
513     }\r
514     protected ConditionValue getCValueTpos() { return getTpos(); }\r
515           \r
516     public BsTObjectCQ addOrderBy_Tpos_Asc() { regOBA("TPos"); return this; }\r
517     public BsTObjectCQ addOrderBy_Tpos_Desc() { regOBD("TPos"); return this; }\r
518 \r
519     protected ConditionValue _isroot;\r
520     public ConditionValue getIsroot() {\r
521         if (_isroot == null) { _isroot = new ConditionValue(); }\r
522         return _isroot;\r
523     }\r
524     protected ConditionValue getCValueIsroot() { return getIsroot(); }\r
525     \r
526     public BsTObjectCQ addOrderBy_Isroot_Asc() { regOBA("IsRoot"); return this; }\r
527     public BsTObjectCQ addOrderBy_Isroot_Desc() { regOBD("IsRoot"); return this; }\r
528 \r
529     protected ConditionValue _isleaf;\r
530     public ConditionValue getIsleaf() {\r
531         if (_isleaf == null) { _isleaf = new ConditionValue(); }\r
532         return _isleaf;\r
533     }\r
534     protected ConditionValue getCValueIsleaf() { return getIsleaf(); }\r
535     \r
536     public BsTObjectCQ addOrderBy_Isleaf_Asc() { regOBA("IsLeaf"); return this; }\r
537     public BsTObjectCQ addOrderBy_Isleaf_Desc() { regOBD("IsLeaf"); return this; }\r
538 \r
539     protected ConditionValue _isspec;\r
540     public ConditionValue getIsspec() {\r
541         if (_isspec == null) { _isspec = new ConditionValue(); }\r
542         return _isspec;\r
543     }\r
544     protected ConditionValue getCValueIsspec() { return getIsspec(); }\r
545     \r
546     public BsTObjectCQ addOrderBy_Isspec_Asc() { regOBA("IsSpec"); return this; }\r
547     public BsTObjectCQ addOrderBy_Isspec_Desc() { regOBD("IsSpec"); return this; }\r
548 \r
549     protected ConditionValue _isactive;\r
550     public ConditionValue getIsactive() {\r
551         if (_isactive == null) { _isactive = new ConditionValue(); }\r
552         return _isactive;\r
553     }\r
554     protected ConditionValue getCValueIsactive() { return getIsactive(); }\r
555     \r
556     public BsTObjectCQ addOrderBy_Isactive_Asc() { regOBA("IsActive"); return this; }\r
557     public BsTObjectCQ addOrderBy_Isactive_Desc() { regOBD("IsActive"); return this; }\r
558 \r
559     protected ConditionValue _stateflags;\r
560     public ConditionValue getStateflags() {\r
561         if (_stateflags == null) { _stateflags = new ConditionValue(); }\r
562         return _stateflags;\r
563     }\r
564     protected ConditionValue getCValueStateflags() { return getStateflags(); }\r
565     \r
566     public BsTObjectCQ addOrderBy_Stateflags_Asc() { regOBA("StateFlags"); return this; }\r
567     public BsTObjectCQ addOrderBy_Stateflags_Desc() { regOBD("StateFlags"); return this; }\r
568 \r
569     protected ConditionValue _packageflags;\r
570     public ConditionValue getPackageflags() {\r
571         if (_packageflags == null) { _packageflags = new ConditionValue(); }\r
572         return _packageflags;\r
573     }\r
574     protected ConditionValue getCValuePackageflags() { return getPackageflags(); }\r
575     \r
576     public BsTObjectCQ addOrderBy_Packageflags_Asc() { regOBA("PackageFlags"); return this; }\r
577     public BsTObjectCQ addOrderBy_Packageflags_Desc() { regOBD("PackageFlags"); return this; }\r
578 \r
579     protected ConditionValue _multiplicity;\r
580     public ConditionValue getMultiplicity() {\r
581         if (_multiplicity == null) { _multiplicity = new ConditionValue(); }\r
582         return _multiplicity;\r
583     }\r
584     protected ConditionValue getCValueMultiplicity() { return getMultiplicity(); }\r
585     \r
586     public BsTObjectCQ addOrderBy_Multiplicity_Asc() { regOBA("Multiplicity"); return this; }\r
587     public BsTObjectCQ addOrderBy_Multiplicity_Desc() { regOBD("Multiplicity"); return this; }\r
588 \r
589     protected ConditionValue _styleex;\r
590     public ConditionValue getStyleex() {\r
591         if (_styleex == null) { _styleex = new ConditionValue(); }\r
592         return _styleex;\r
593     }\r
594     protected ConditionValue getCValueStyleex() { return getStyleex(); }\r
595     \r
596     public BsTObjectCQ addOrderBy_Styleex_Asc() { regOBA("StyleEx"); return this; }\r
597     public BsTObjectCQ addOrderBy_Styleex_Desc() { regOBD("StyleEx"); return this; }\r
598 \r
599     protected ConditionValue _actionflags;\r
600     public ConditionValue getActionflags() {\r
601         if (_actionflags == null) { _actionflags = new ConditionValue(); }\r
602         return _actionflags;\r
603     }\r
604     protected ConditionValue getCValueActionflags() { return getActionflags(); }\r
605     \r
606     public BsTObjectCQ addOrderBy_Actionflags_Asc() { regOBA("ActionFlags"); return this; }\r
607     public BsTObjectCQ addOrderBy_Actionflags_Desc() { regOBD("ActionFlags"); return this; }\r
608 \r
609     protected ConditionValue _eventflags;\r
610     public ConditionValue getEventflags() {\r
611         if (_eventflags == null) { _eventflags = new ConditionValue(); }\r
612         return _eventflags;\r
613     }\r
614     protected ConditionValue getCValueEventflags() { return getEventflags(); }\r
615     \r
616     public BsTObjectCQ addOrderBy_Eventflags_Asc() { regOBA("EventFlags"); return this; }\r
617     public BsTObjectCQ addOrderBy_Eventflags_Desc() { regOBD("EventFlags"); return this; }\r
618 \r
619     // ===================================================================================\r
620     //                                                           Specified Derived OrderBy\r
621     //                                                           =========================\r
622     public BsTObjectCQ addSpecifiedDerivedOrderBy_Asc(String aliasName) { registerSpecifiedDerivedOrderBy_Asc(aliasName); return this; }\r
623     public BsTObjectCQ addSpecifiedDerivedOrderBy_Desc(String aliasName) { registerSpecifiedDerivedOrderBy_Desc(aliasName); return this; }\r
624 \r
625     // ===================================================================================\r
626     //                                                                         Union Query\r
627     //                                                                         ===========\r
628     protected void reflectRelationOnUnionQuery(ConditionQuery baseQueryAsSuper, ConditionQuery unionQueryAsSuper) {\r
629     }\r
630 \r
631     // ===================================================================================\r
632     //                                                                       Foreign Query\r
633     //                                                                       =============\r
634 \r
635 \r
636     protected String getConditionQueryClassNameInternally() { return TObjectCQ.class.getName(); }\r
637     protected String getMapClassNameInternally() { return Map.class.getName(); }\r
638 }\r