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 / AbstractBsTAttributetagCQ.java
1 package jp.sourceforge.ea2ddl.dao.cbean.cq.bs;\r
2 \r
3 import java.util.Collection;\r
4 \r
5 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.*;\r
6 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.ckey.*;\r
7 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.cvalue.ConditionValue;\r
8 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.sqlclause.SqlClause;\r
9 import jp.sourceforge.ea2ddl.dao.cbean.*;\r
10 import jp.sourceforge.ea2ddl.dao.cbean.cq.*;\r
11 \r
12 /**\r
13  * The abstract condition-query of t_attributetag.\r
14  * @author DBFlute(AutoGenerator)\r
15  */
16 @SuppressWarnings("unchecked")\r
17 public abstract class AbstractBsTAttributetagCQ extends AbstractConditionQuery {\r
18 \r
19     // ===================================================================================\r
20     //                                                                         Constructor\r
21     //                                                                         ===========\r
22     public AbstractBsTAttributetagCQ(ConditionQuery childQuery, SqlClause sqlClause, String aliasName, int nestLevel) {\r
23         super(childQuery, sqlClause, aliasName, nestLevel);\r
24     }\r
25 \r
26     // ===================================================================================\r
27     //                                                                          Table Name\r
28     //                                                                          ==========\r
29     public String getTableDbName() {\r
30         return "t_attributetag";\r
31     }\r
32     \r
33     public String getTableSqlName() {\r
34         return "t_attributetag";\r
35     }\r
36 \r
37     // ===================================================================================\r
38     //                                                                               Query\r
39     //                                                                               =====\r
40     \r
41     /**\r
42      * Equal(=). And NullIgnored, OnceRegistered. {UQ : COUNTER : NotNull}\r
43      * @param propertyid The value of propertyid as equal.\r
44      */\r
45     public void setPropertyid_Equal(java.lang.Integer propertyid) {\r
46         regPropertyid(CK_EQ, propertyid);\r
47     }\r
48 \r
49     /**\r
50      * NotEqual(!=). And NullIgnored, OnceRegistered.\r
51      * @param propertyid The value of propertyid as notEqual.\r
52      */\r
53     public void setPropertyid_NotEqual(java.lang.Integer propertyid) {\r
54         regPropertyid(CK_NE, propertyid);\r
55     }\r
56 \r
57     /**\r
58      * GreaterThan(>). And NullIgnored, OnceRegistered.\r
59      * @param propertyid The value of propertyid as greaterThan.\r
60      */\r
61     public void setPropertyid_GreaterThan(java.lang.Integer propertyid) {\r
62         regPropertyid(CK_GT, propertyid);\r
63     }\r
64 \r
65     /**\r
66      * LessThan(<). And NullIgnored, OnceRegistered.\r
67      * @param propertyid The value of propertyid as lessThan.\r
68      */\r
69     public void setPropertyid_LessThan(java.lang.Integer propertyid) {\r
70         regPropertyid(CK_LT, propertyid);\r
71     }\r
72 \r
73     /**\r
74      * GreaterEqual(>=). And NullIgnored, OnceRegistered.\r
75      * @param propertyid The value of propertyid as greaterEqual.\r
76      */\r
77     public void setPropertyid_GreaterEqual(java.lang.Integer propertyid) {\r
78         regPropertyid(CK_GE, propertyid);\r
79     }\r
80 \r
81     /**\r
82      * LessEqual(<=). And NullIgnored, OnceRegistered.\r
83      * @param propertyid The value of propertyid as lessEqual.\r
84      */\r
85     public void setPropertyid_LessEqual(java.lang.Integer propertyid) {\r
86         regPropertyid(CK_LE, propertyid);\r
87     }\r
88 \r
89     /**\r
90      * InScope(in (1, 2)). And NullIgnored, NullElementIgnored, SeveralRegistered.\r
91      * @param propertyidList The collection of propertyid as inScope.\r
92      */\r
93     public void setPropertyid_InScope(Collection<java.lang.Integer> propertyidList) {\r
94         regPropertyid(CK_INS, cTL(propertyidList));\r
95     }\r
96 \r
97     protected void regPropertyid(ConditionKey key, Object value) {\r
98         registerQuery(key, value, getCValuePropertyid(), "PropertyID", "Propertyid", "propertyid");\r
99     }\r
100     protected void registerInlinePropertyid(ConditionKey key, Object value) {\r
101         registerInlineQuery(key, value, getCValuePropertyid(), "PropertyID", "Propertyid", "propertyid");\r
102     }\r
103     abstract protected ConditionValue getCValuePropertyid();\r
104     \r
105     /**\r
106      * Equal(=). And NullIgnored, OnceRegistered. {INTEGER}\r
107      * @param elementid The value of elementid as equal.\r
108      */\r
109     public void setElementid_Equal(java.lang.Integer elementid) {\r
110         regElementid(CK_EQ, elementid);\r
111     }\r
112 \r
113     /**\r
114      * NotEqual(!=). And NullIgnored, OnceRegistered.\r
115      * @param elementid The value of elementid as notEqual.\r
116      */\r
117     public void setElementid_NotEqual(java.lang.Integer elementid) {\r
118         regElementid(CK_NE, elementid);\r
119     }\r
120 \r
121     /**\r
122      * GreaterThan(&gt;). And NullIgnored, OnceRegistered.\r
123      * @param elementid The value of elementid as greaterThan.\r
124      */\r
125     public void setElementid_GreaterThan(java.lang.Integer elementid) {\r
126         regElementid(CK_GT, elementid);\r
127     }\r
128 \r
129     /**\r
130      * LessThan(&lt;). And NullIgnored, OnceRegistered.\r
131      * @param elementid The value of elementid as lessThan.\r
132      */\r
133     public void setElementid_LessThan(java.lang.Integer elementid) {\r
134         regElementid(CK_LT, elementid);\r
135     }\r
136 \r
137     /**\r
138      * GreaterEqual(&gt;=). And NullIgnored, OnceRegistered.\r
139      * @param elementid The value of elementid as greaterEqual.\r
140      */\r
141     public void setElementid_GreaterEqual(java.lang.Integer elementid) {\r
142         regElementid(CK_GE, elementid);\r
143     }\r
144 \r
145     /**\r
146      * LessEqual(&lt;=). And NullIgnored, OnceRegistered.\r
147      * @param elementid The value of elementid as lessEqual.\r
148      */\r
149     public void setElementid_LessEqual(java.lang.Integer elementid) {\r
150         regElementid(CK_LE, elementid);\r
151     }\r
152 \r
153     /**\r
154      * InScope(in (1, 2)). And NullIgnored, NullElementIgnored, SeveralRegistered.\r
155      * @param elementidList The collection of elementid as inScope.\r
156      */\r
157     public void setElementid_InScope(Collection<java.lang.Integer> elementidList) {\r
158         regElementid(CK_INS, cTL(elementidList));\r
159     }\r
160 \r
161     /**\r
162      * IsNull(is null). And OnceRegistered.\r
163      */\r
164     public void setElementid_IsNull() { regElementid(CK_ISN, DUMMY_OBJECT); }\r
165 \r
166     /**\r
167      * IsNotNull(is not null). And OnceRegistered.\r
168      */\r
169     public void setElementid_IsNotNull() { regElementid(CK_ISNN, DUMMY_OBJECT); }\r
170 \r
171     protected void regElementid(ConditionKey key, Object value) {\r
172         registerQuery(key, value, getCValueElementid(), "ElementID", "Elementid", "elementid");\r
173     }\r
174     protected void registerInlineElementid(ConditionKey key, Object value) {\r
175         registerInlineQuery(key, value, getCValueElementid(), "ElementID", "Elementid", "elementid");\r
176     }\r
177     abstract protected ConditionValue getCValueElementid();\r
178 \r
179     /**\r
180      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(255)}\r
181      * @param property The value of property as equal.\r
182      */\r
183     public void setProperty_Equal(String property) {\r
184         regProperty(CK_EQ, fRES(property));\r
185     }\r
186 \r
187     /**\r
188      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
189      * @param property The value of property as notEqual.\r
190      */\r
191     public void setProperty_NotEqual(String property) {\r
192         regProperty(CK_NE, fRES(property));\r
193     }\r
194 \r
195     /**\r
196      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
197      * @param property The value of property as greaterThan.\r
198      */\r
199     public void setProperty_GreaterThan(String property) {\r
200         regProperty(CK_GT, fRES(property));\r
201     }\r
202 \r
203     /**\r
204      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
205      * @param property The value of property as lessThan.\r
206      */\r
207     public void setProperty_LessThan(String property) {\r
208         regProperty(CK_LT, fRES(property));\r
209     }\r
210 \r
211     /**\r
212      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
213      * @param property The value of property as greaterEqual.\r
214      */\r
215     public void setProperty_GreaterEqual(String property) {\r
216         regProperty(CK_GE, fRES(property));\r
217     }\r
218 \r
219     /**\r
220      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
221      * @param property The value of property as lessEqual.\r
222      */\r
223     public void setProperty_LessEqual(String property) {\r
224         regProperty(CK_LE, fRES(property));\r
225     }\r
226 \r
227     /**\r
228      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
229      * @param property The value of property as prefixSearch.\r
230      */\r
231     public void setProperty_PrefixSearch(String property) {\r
232         regProperty(CK_PS, fRES(property));\r
233     }\r
234 \r
235     /**\r
236      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
237      * @param property The value of property as likeSearch.\r
238      * @param likeSearchOption The option of like-search. (NotNull)\r
239      */\r
240     public void setProperty_LikeSearch(String property, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
241         registerLikeSearchQuery(CK_LS, fRES(property), getCValueProperty(), "Property", "Property", "property", likeSearchOption);\r
242     }\r
243 \r
244     /**\r
245      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
246      * @param propertyList The collection of property as inScope.\r
247      */\r
248     public void setProperty_InScope(Collection<String> propertyList) {\r
249         regProperty(CK_INS, cTL(propertyList));\r
250     }\r
251 \r
252     /**\r
253      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
254      * @param property The collection of property as inScope.\r
255      * @param inScopeOption The option of in-scope. (NotNull)\r
256      */\r
257     public void setProperty_InScope(String property, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
258         registerInScopeQuery(CK_INS, fRES(property), getCValueProperty(), "Property", "Property", "property", inScopeOption);\r
259     }\r
260 \r
261     /**\r
262      * IsNull(is null). And OnceRegistered.\r
263      */\r
264     public void setProperty_IsNull() { regProperty(CK_ISN, DUMMY_OBJECT); }\r
265 \r
266     /**\r
267      * IsNotNull(is not null). And OnceRegistered.\r
268      */\r
269     public void setProperty_IsNotNull() { regProperty(CK_ISNN, DUMMY_OBJECT); }\r
270 \r
271     protected void regProperty(ConditionKey key, Object value) {\r
272         registerQuery(key, value, getCValueProperty(), "Property", "Property", "property");\r
273     }\r
274     protected void registerInlineProperty(ConditionKey key, Object value) {\r
275         registerInlineQuery(key, value, getCValueProperty(), "Property", "Property", "property");\r
276     }\r
277     abstract protected ConditionValue getCValueProperty();\r
278 \r
279     /**\r
280      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(255)}\r
281      * @param value The value of value as equal.\r
282      */\r
283     public void setValue_Equal(String value) {\r
284         regValue(CK_EQ, fRES(value));\r
285     }\r
286 \r
287     /**\r
288      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
289      * @param value The value of value as notEqual.\r
290      */\r
291     public void setValue_NotEqual(String value) {\r
292         regValue(CK_NE, fRES(value));\r
293     }\r
294 \r
295     /**\r
296      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
297      * @param value The value of value as greaterThan.\r
298      */\r
299     public void setValue_GreaterThan(String value) {\r
300         regValue(CK_GT, fRES(value));\r
301     }\r
302 \r
303     /**\r
304      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
305      * @param value The value of value as lessThan.\r
306      */\r
307     public void setValue_LessThan(String value) {\r
308         regValue(CK_LT, fRES(value));\r
309     }\r
310 \r
311     /**\r
312      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
313      * @param value The value of value as greaterEqual.\r
314      */\r
315     public void setValue_GreaterEqual(String value) {\r
316         regValue(CK_GE, fRES(value));\r
317     }\r
318 \r
319     /**\r
320      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
321      * @param value The value of value as lessEqual.\r
322      */\r
323     public void setValue_LessEqual(String value) {\r
324         regValue(CK_LE, fRES(value));\r
325     }\r
326 \r
327     /**\r
328      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
329      * @param value The value of value as prefixSearch.\r
330      */\r
331     public void setValue_PrefixSearch(String value) {\r
332         regValue(CK_PS, fRES(value));\r
333     }\r
334 \r
335     /**\r
336      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
337      * @param value The value of value as likeSearch.\r
338      * @param likeSearchOption The option of like-search. (NotNull)\r
339      */\r
340     public void setValue_LikeSearch(String value, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
341         registerLikeSearchQuery(CK_LS, fRES(value), getCValueValue(), "VALUE", "Value", "value", likeSearchOption);\r
342     }\r
343 \r
344     /**\r
345      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
346      * @param valueList The collection of value as inScope.\r
347      */\r
348     public void setValue_InScope(Collection<String> valueList) {\r
349         regValue(CK_INS, cTL(valueList));\r
350     }\r
351 \r
352     /**\r
353      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
354      * @param value The collection of value as inScope.\r
355      * @param inScopeOption The option of in-scope. (NotNull)\r
356      */\r
357     public void setValue_InScope(String value, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
358         registerInScopeQuery(CK_INS, fRES(value), getCValueValue(), "VALUE", "Value", "value", inScopeOption);\r
359     }\r
360 \r
361     /**\r
362      * IsNull(is null). And OnceRegistered.\r
363      */\r
364     public void setValue_IsNull() { regValue(CK_ISN, DUMMY_OBJECT); }\r
365 \r
366     /**\r
367      * IsNotNull(is not null). And OnceRegistered.\r
368      */\r
369     public void setValue_IsNotNull() { regValue(CK_ISNN, DUMMY_OBJECT); }\r
370 \r
371     protected void regValue(ConditionKey key, Object value) {\r
372         registerQuery(key, value, getCValueValue(), "VALUE", "Value", "value");\r
373     }\r
374     protected void registerInlineValue(ConditionKey key, Object value) {\r
375         registerInlineQuery(key, value, getCValueValue(), "VALUE", "Value", "value");\r
376     }\r
377     abstract protected ConditionValue getCValueValue();\r
378 \r
379     /**\r
380      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {LONGCHAR(2147483647)}\r
381      * @param notes The value of notes as equal.\r
382      */\r
383     public void setNotes_Equal(String notes) {\r
384         regNotes(CK_EQ, fRES(notes));\r
385     }\r
386 \r
387     /**\r
388      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
389      * @param notes The value of notes as notEqual.\r
390      */\r
391     public void setNotes_NotEqual(String notes) {\r
392         regNotes(CK_NE, fRES(notes));\r
393     }\r
394 \r
395     /**\r
396      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
397      * @param notes The value of notes as greaterThan.\r
398      */\r
399     public void setNotes_GreaterThan(String notes) {\r
400         regNotes(CK_GT, fRES(notes));\r
401     }\r
402 \r
403     /**\r
404      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
405      * @param notes The value of notes as lessThan.\r
406      */\r
407     public void setNotes_LessThan(String notes) {\r
408         regNotes(CK_LT, fRES(notes));\r
409     }\r
410 \r
411     /**\r
412      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
413      * @param notes The value of notes as greaterEqual.\r
414      */\r
415     public void setNotes_GreaterEqual(String notes) {\r
416         regNotes(CK_GE, fRES(notes));\r
417     }\r
418 \r
419     /**\r
420      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
421      * @param notes The value of notes as lessEqual.\r
422      */\r
423     public void setNotes_LessEqual(String notes) {\r
424         regNotes(CK_LE, fRES(notes));\r
425     }\r
426 \r
427     /**\r
428      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
429      * @param notes The value of notes as prefixSearch.\r
430      */\r
431     public void setNotes_PrefixSearch(String notes) {\r
432         regNotes(CK_PS, fRES(notes));\r
433     }\r
434 \r
435     /**\r
436      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
437      * @param notes The value of notes as likeSearch.\r
438      * @param likeSearchOption The option of like-search. (NotNull)\r
439      */\r
440     public void setNotes_LikeSearch(String notes, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
441         registerLikeSearchQuery(CK_LS, fRES(notes), getCValueNotes(), "NOTES", "Notes", "notes", likeSearchOption);\r
442     }\r
443 \r
444     /**\r
445      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
446      * @param notesList The collection of notes as inScope.\r
447      */\r
448     public void setNotes_InScope(Collection<String> notesList) {\r
449         regNotes(CK_INS, cTL(notesList));\r
450     }\r
451 \r
452     /**\r
453      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
454      * @param notes The collection of notes as inScope.\r
455      * @param inScopeOption The option of in-scope. (NotNull)\r
456      */\r
457     public void setNotes_InScope(String notes, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
458         registerInScopeQuery(CK_INS, fRES(notes), getCValueNotes(), "NOTES", "Notes", "notes", inScopeOption);\r
459     }\r
460 \r
461     /**\r
462      * IsNull(is null). And OnceRegistered.\r
463      */\r
464     public void setNotes_IsNull() { regNotes(CK_ISN, DUMMY_OBJECT); }\r
465 \r
466     /**\r
467      * IsNotNull(is not null). And OnceRegistered.\r
468      */\r
469     public void setNotes_IsNotNull() { regNotes(CK_ISNN, DUMMY_OBJECT); }\r
470 \r
471     protected void regNotes(ConditionKey key, Object value) {\r
472         registerQuery(key, value, getCValueNotes(), "NOTES", "Notes", "notes");\r
473     }\r
474     protected void registerInlineNotes(ConditionKey key, Object value) {\r
475         registerInlineQuery(key, value, getCValueNotes(), "NOTES", "Notes", "notes");\r
476     }\r
477     abstract protected ConditionValue getCValueNotes();\r
478 \r
479     /**\r
480      * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(40)}\r
481      * @param eaGuid The value of eaGuid as equal.\r
482      */\r
483     public void setEaGuid_Equal(String eaGuid) {\r
484         regEaGuid(CK_EQ, fRES(eaGuid));\r
485     }\r
486 \r
487     /**\r
488      * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
489      * @param eaGuid The value of eaGuid as notEqual.\r
490      */\r
491     public void setEaGuid_NotEqual(String eaGuid) {\r
492         regEaGuid(CK_NE, fRES(eaGuid));\r
493     }\r
494 \r
495     /**\r
496      * GreaterThan(&gt;). And NullOrEmptyIgnored, OnceRegistered.\r
497      * @param eaGuid The value of eaGuid as greaterThan.\r
498      */\r
499     public void setEaGuid_GreaterThan(String eaGuid) {\r
500         regEaGuid(CK_GT, fRES(eaGuid));\r
501     }\r
502 \r
503     /**\r
504      * LessThan(&lt;). And NullOrEmptyIgnored, OnceRegistered.\r
505      * @param eaGuid The value of eaGuid as lessThan.\r
506      */\r
507     public void setEaGuid_LessThan(String eaGuid) {\r
508         regEaGuid(CK_LT, fRES(eaGuid));\r
509     }\r
510 \r
511     /**\r
512      * GreaterEqual(&gt;=). And NullOrEmptyIgnored, OnceRegistered.\r
513      * @param eaGuid The value of eaGuid as greaterEqual.\r
514      */\r
515     public void setEaGuid_GreaterEqual(String eaGuid) {\r
516         regEaGuid(CK_GE, fRES(eaGuid));\r
517     }\r
518 \r
519     /**\r
520      * LessEqual(&lt;=). And NullOrEmptyIgnored, OnceRegistered.\r
521      * @param eaGuid The value of eaGuid as lessEqual.\r
522      */\r
523     public void setEaGuid_LessEqual(String eaGuid) {\r
524         regEaGuid(CK_LE, fRES(eaGuid));\r
525     }\r
526 \r
527     /**\r
528      * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
529      * @param eaGuid The value of eaGuid as prefixSearch.\r
530      */\r
531     public void setEaGuid_PrefixSearch(String eaGuid) {\r
532         regEaGuid(CK_PS, fRES(eaGuid));\r
533     }\r
534 \r
535     /**\r
536      * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
537      * @param eaGuid The value of eaGuid as likeSearch.\r
538      * @param likeSearchOption The option of like-search. (NotNull)\r
539      */\r
540     public void setEaGuid_LikeSearch(String eaGuid, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
541         registerLikeSearchQuery(CK_LS, fRES(eaGuid), getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid", likeSearchOption);\r
542     }\r
543 \r
544     /**\r
545      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
546      * @param eaGuidList The collection of eaGuid as inScope.\r
547      */\r
548     public void setEaGuid_InScope(Collection<String> eaGuidList) {\r
549         regEaGuid(CK_INS, cTL(eaGuidList));\r
550     }\r
551 \r
552     /**\r
553      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
554      * @param eaGuid The collection of eaGuid as inScope.\r
555      * @param inScopeOption The option of in-scope. (NotNull)\r
556      */\r
557     public void setEaGuid_InScope(String eaGuid, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
558         registerInScopeQuery(CK_INS, fRES(eaGuid), getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid", inScopeOption);\r
559     }\r
560 \r
561     /**\r
562      * IsNull(is null). And OnceRegistered.\r
563      */\r
564     public void setEaGuid_IsNull() { regEaGuid(CK_ISN, DUMMY_OBJECT); }\r
565 \r
566     /**\r
567      * IsNotNull(is not null). And OnceRegistered.\r
568      */\r
569     public void setEaGuid_IsNotNull() { regEaGuid(CK_ISNN, DUMMY_OBJECT); }\r
570 \r
571     protected void regEaGuid(ConditionKey key, Object value) {\r
572         registerQuery(key, value, getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid");\r
573     }\r
574     protected void registerInlineEaGuid(ConditionKey key, Object value) {\r
575         registerInlineQuery(key, value, getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid");\r
576     }\r
577     abstract protected ConditionValue getCValueEaGuid();\r
578 \r
579     // Very Internal (for Suppressing Warn about 'Not Use Import')\r
580     protected String getConditionBeanClassNameInternally() { return TAttributetagCB.class.getName(); }\r
581     protected String getConditionQueryClassNameInternally() { return TAttributetagCQ.class.getName(); }\r
582 }\r