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 / BsTDiagramtypesCQ.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_diagramtypes.\r
13  * @author DBFlute(AutoGenerator)\r
14  */
15 @SuppressWarnings("unchecked")\r
16 public class BsTDiagramtypesCQ extends AbstractBsTDiagramtypesCQ {\r
17 \r
18     // ===================================================================================\r
19     //                                                                           Attribute\r
20     //                                                                           =========\r
21     protected TDiagramtypesCIQ _inlineQuery;\r
22 \r
23     // ===================================================================================\r
24     //                                                                         Constructor\r
25     //                                                                         ===========\r
26     public BsTDiagramtypesCQ(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_diagramtypes) where abc = [abc] ...}\r
36      * @return Inline query. (NotNull)\r
37      */\r
38     public TDiagramtypesCIQ inline() {\r
39         if (_inlineQuery == null) {\r
40             _inlineQuery = new TDiagramtypesCIQ(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_diagramtypes on ... and abc = [abc] ...}\r
48      * @return On-clause query. (NotNull)\r
49      */\r
50     public TDiagramtypesCIQ on() {\r
51         if (isBaseQuery(this)) { throw new UnsupportedOperationException("Unsupported onClause of Base Table!"); }\r
52         TDiagramtypesCIQ inlineQuery = inline(); inlineQuery.xsetOnClauseInline(true); return inlineQuery;\r
53     }\r
54 \r
55     // ===================================================================================\r
56     //                                                                               Query\r
57     //                                                                               =====\r
58 \r
59     protected ConditionValue _diagramType;\r
60     public ConditionValue getDiagramType() {\r
61         if (_diagramType == null) { _diagramType = new ConditionValue(); }\r
62         return _diagramType;\r
63     }\r
64     protected ConditionValue getCValueDiagramType() { return getDiagramType(); }\r
65     \r
66     public BsTDiagramtypesCQ addOrderBy_DiagramType_Asc() { regOBA("Diagram_Type"); return this; }\r
67     public BsTDiagramtypesCQ addOrderBy_DiagramType_Desc() { regOBD("Diagram_Type"); return this; }\r
68 \r
69     protected ConditionValue _name;\r
70     public ConditionValue getName() {\r
71         if (_name == null) { _name = new ConditionValue(); }\r
72         return _name;\r
73     }\r
74     protected ConditionValue getCValueName() { return getName(); }\r
75     \r
76     public BsTDiagramtypesCQ addOrderBy_Name_Asc() { regOBA("Name"); return this; }\r
77     public BsTDiagramtypesCQ addOrderBy_Name_Desc() { regOBD("Name"); return this; }\r
78 \r
79     protected ConditionValue _packageId;\r
80     public ConditionValue getPackageId() {\r
81         if (_packageId == null) { _packageId = new ConditionValue(); }\r
82         return _packageId;\r
83     }\r
84     protected ConditionValue getCValuePackageId() { return getPackageId(); }\r
85           \r
86     public BsTDiagramtypesCQ addOrderBy_PackageId_Asc() { regOBA("Package_ID"); return this; }\r
87     public BsTDiagramtypesCQ addOrderBy_PackageId_Desc() { regOBD("Package_ID"); return this; }\r
88 \r
89     // ===================================================================================\r
90     //                                                           Specified Derived OrderBy\r
91     //                                                           =========================\r
92     public BsTDiagramtypesCQ addSpecifiedDerivedOrderBy_Asc(String aliasName) { registerSpecifiedDerivedOrderBy_Asc(aliasName); return this; }\r
93     public BsTDiagramtypesCQ addSpecifiedDerivedOrderBy_Desc(String aliasName) { registerSpecifiedDerivedOrderBy_Desc(aliasName); return this; }\r
94 \r
95     // ===================================================================================\r
96     //                                                                         Union Query\r
97     //                                                                         ===========\r
98     protected void reflectRelationOnUnionQuery(ConditionQuery baseQueryAsSuper, ConditionQuery unionQueryAsSuper) {\r
99     }\r
100 \r
101     // ===================================================================================\r
102     //                                                                       Foreign Query\r
103     //                                                                       =============\r
104 \r
105 \r
106     protected String getConditionQueryClassNameInternally() { return TDiagramtypesCQ.class.getName(); }\r
107     protected String getMapClassNameInternally() { return Map.class.getName(); }\r
108 }\r