OSDN Git Service

DBFlute-0.9.3に更新
[ea2ddl/ea2ddl.git] / ea2ddl-dao / src / main / java / jp / sourceforge / ea2ddl / dao / cbean / cq / bs / AbstractBsTStereotypesCQ.java
index 99a20cd..5ad9d7a 100644 (file)
@@ -2,21 +2,28 @@ package jp.sourceforge.ea2ddl.dao.cbean.cq.bs;
 \r
 import java.util.Collection;\r
 \r
-import jp.sourceforge.ea2ddl.dao.allcommon.cbean.*;\r
-import jp.sourceforge.ea2ddl.dao.allcommon.cbean.ckey.*;\r
-import jp.sourceforge.ea2ddl.dao.allcommon.cbean.cvalue.ConditionValue;\r
-import jp.sourceforge.ea2ddl.dao.allcommon.cbean.sqlclause.SqlClause;\r
+import org.seasar.dbflute.cbean.*;\r
+import org.seasar.dbflute.cbean.ckey.*;\r
+import org.seasar.dbflute.cbean.coption.*;\r
+import org.seasar.dbflute.cbean.cvalue.ConditionValue;\r
+import org.seasar.dbflute.cbean.sqlclause.SqlClause;\r
+import org.seasar.dbflute.dbmeta.DBMetaProvider;\r
+import jp.sourceforge.ea2ddl.dao.allcommon.*;\r
 import jp.sourceforge.ea2ddl.dao.cbean.*;\r
 import jp.sourceforge.ea2ddl.dao.cbean.cq.*;\r
 \r
 /**\r
  * The abstract condition-query of t_stereotypes.\r
  * @author DBFlute(AutoGenerator)\r
- */
-@SuppressWarnings("unchecked")\r
+ */\r
 public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {\r
 \r
     // ===================================================================================\r
+    //                                                                           Attribute\r
+    //                                                                           =========\r
+    protected final DBMetaProvider _dbmetaProvider = new DBMetaInstanceHandler();\r
+\r
+    // ===================================================================================\r
     //                                                                         Constructor\r
     //                                                                         ===========\r
     public AbstractBsTStereotypesCQ(ConditionQuery childQuery, SqlClause sqlClause, String aliasName, int nestLevel) {\r
@@ -24,6 +31,14 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     // ===================================================================================\r
+    //                                                                     DBMeta Provider\r
+    //                                                                     ===============\r
+    @Override\r
+    protected DBMetaProvider getDBMetaProvider() {\r
+        return _dbmetaProvider;\r
+    }\r
+\r
+    // ===================================================================================\r
     //                                                                          Table Name\r
     //                                                                          ==========\r
     public String getTableDbName() {\r
@@ -39,7 +54,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     //                                                                               =====\r
 \r
     /**\r
-     * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {UQ : VARCHAR(255)}\r
+     * Equal(=). And NullOrEmptyIgnored, OnlyOnceRegistered. {UQ : VARCHAR(255)}\r
      * @param stereotype The value of stereotype as equal.\r
      */\r
     public void setStereotype_Equal(String stereotype) {\r
@@ -47,7 +62,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * NotEqual(!=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param stereotype The value of stereotype as notEqual.\r
      */\r
     public void setStereotype_NotEqual(String stereotype) {\r
@@ -55,7 +70,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * GreaterThan(>). And NullOrEmptyIgnored, OnceRegistered.\r
+     * GreaterThan(>). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param stereotype The value of stereotype as greaterThan.\r
      */\r
     public void setStereotype_GreaterThan(String stereotype) {\r
@@ -63,7 +78,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LessThan(<). And NullOrEmptyIgnored, OnceRegistered.\r
+     * LessThan(<). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param stereotype The value of stereotype as lessThan.\r
      */\r
     public void setStereotype_LessThan(String stereotype) {\r
@@ -71,7 +86,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * GreaterEqual(>=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * GreaterEqual(>=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param stereotype The value of stereotype as greaterEqual.\r
      */\r
     public void setStereotype_GreaterEqual(String stereotype) {\r
@@ -79,7 +94,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LessEqual(<=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * LessEqual(<=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param stereotype The value of stereotype as lessEqual.\r
      */\r
     public void setStereotype_LessEqual(String stereotype) {\r
@@ -87,7 +102,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
+     * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param stereotype The value of stereotype as prefixSearch.\r
      */\r
     public void setStereotype_PrefixSearch(String stereotype) {\r
@@ -95,15 +110,6 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
-     * @param stereotype The value of stereotype as likeSearch.\r
-     * @param likeSearchOption The option of like-search. (NotNull)\r
-     */\r
-    public void setStereotype_LikeSearch(String stereotype, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
-        registerLikeSearchQuery(CK_LS, fRES(stereotype), getCValueStereotype(), "Stereotype", "Stereotype", "stereotype", likeSearchOption);\r
-    }\r
-\r
-    /**\r
      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
      * @param stereotypeList The collection of stereotype as inScope.\r
      */\r
@@ -112,34 +118,38 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
-     * @param stereotype The collection of stereotype as inScope.\r
-     * @param inScopeOption The option of in-scope. (NotNull)\r
+     * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
+     * @param stereotype The value of stereotype as likeSearch.\r
+     * @param likeSearchOption The option of like-search. (NotNull)\r
      */\r
-    public void setStereotype_InScope(String stereotype, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
-        registerInScopeQuery(CK_INS, fRES(stereotype), getCValueStereotype(), "Stereotype", "Stereotype", "stereotype", inScopeOption);\r
+    public void setStereotype_LikeSearch(String stereotype, LikeSearchOption likeSearchOption) {\r
+        regLSQ(CK_LS, fRES(stereotype), getCValueStereotype(), "Stereotype", likeSearchOption);\r
     }\r
 \r
     /**\r
-     * IsNull(is null). And OnceRegistered.\r
+     * NotLikeSearch(not like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
+     * @param stereotype The value of stereotype as notLikeSearch.\r
+     * @param likeSearchOption The option of not-like-search. (NotNull)\r
      */\r
-    public void setStereotype_IsNull() { regStereotype(CK_ISN, DUMMY_OBJECT); }\r
+    public void setStereotype_NotLikeSearch(String stereotype, LikeSearchOption likeSearchOption) {\r
+        regLSQ(CK_NLS, fRES(stereotype), getCValueStereotype(), "Stereotype", likeSearchOption);\r
+    }\r
 \r
     /**\r
-     * IsNotNull(is not null). And OnceRegistered.\r
+     * IsNull(is null). And OnlyOnceRegistered.\r
      */\r
-    public void setStereotype_IsNotNull() { regStereotype(CK_ISNN, DUMMY_OBJECT); }\r
+    public void setStereotype_IsNull() { regStereotype(CK_ISN, DOBJ); }\r
 \r
-    protected void regStereotype(ConditionKey key, Object value) {\r
-        registerQuery(key, value, getCValueStereotype(), "Stereotype", "Stereotype", "stereotype");\r
-    }\r
-    protected void registerInlineStereotype(ConditionKey key, Object value) {\r
-        registerInlineQuery(key, value, getCValueStereotype(), "Stereotype", "Stereotype", "stereotype");\r
-    }\r
+    /**\r
+     * IsNotNull(is not null). And OnlyOnceRegistered.\r
+     */\r
+    public void setStereotype_IsNotNull() { regStereotype(CK_ISNN, DOBJ); }\r
+\r
+    protected void regStereotype(ConditionKey k, Object v) { regQ(k, v, getCValueStereotype(), "Stereotype"); }\r
     abstract protected ConditionValue getCValueStereotype();\r
 \r
     /**\r
-     * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {UQ : VARCHAR(255)}\r
+     * Equal(=). And NullOrEmptyIgnored, OnlyOnceRegistered. {UQ : VARCHAR(255)}\r
      * @param appliesto The value of appliesto as equal.\r
      */\r
     public void setAppliesto_Equal(String appliesto) {\r
@@ -147,7 +157,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * NotEqual(!=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param appliesto The value of appliesto as notEqual.\r
      */\r
     public void setAppliesto_NotEqual(String appliesto) {\r
@@ -155,7 +165,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * GreaterThan(>). And NullOrEmptyIgnored, OnceRegistered.\r
+     * GreaterThan(>). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param appliesto The value of appliesto as greaterThan.\r
      */\r
     public void setAppliesto_GreaterThan(String appliesto) {\r
@@ -163,7 +173,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LessThan(<). And NullOrEmptyIgnored, OnceRegistered.\r
+     * LessThan(<). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param appliesto The value of appliesto as lessThan.\r
      */\r
     public void setAppliesto_LessThan(String appliesto) {\r
@@ -171,7 +181,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * GreaterEqual(>=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * GreaterEqual(>=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param appliesto The value of appliesto as greaterEqual.\r
      */\r
     public void setAppliesto_GreaterEqual(String appliesto) {\r
@@ -179,7 +189,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LessEqual(<=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * LessEqual(<=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param appliesto The value of appliesto as lessEqual.\r
      */\r
     public void setAppliesto_LessEqual(String appliesto) {\r
@@ -187,7 +197,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
+     * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param appliesto The value of appliesto as prefixSearch.\r
      */\r
     public void setAppliesto_PrefixSearch(String appliesto) {\r
@@ -195,15 +205,6 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
-     * @param appliesto The value of appliesto as likeSearch.\r
-     * @param likeSearchOption The option of like-search. (NotNull)\r
-     */\r
-    public void setAppliesto_LikeSearch(String appliesto, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
-        registerLikeSearchQuery(CK_LS, fRES(appliesto), getCValueAppliesto(), "AppliesTo", "Appliesto", "appliesto", likeSearchOption);\r
-    }\r
-\r
-    /**\r
      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
      * @param appliestoList The collection of appliesto as inScope.\r
      */\r
@@ -212,34 +213,38 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
-     * @param appliesto The collection of appliesto as inScope.\r
-     * @param inScopeOption The option of in-scope. (NotNull)\r
+     * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
+     * @param appliesto The value of appliesto as likeSearch.\r
+     * @param likeSearchOption The option of like-search. (NotNull)\r
      */\r
-    public void setAppliesto_InScope(String appliesto, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
-        registerInScopeQuery(CK_INS, fRES(appliesto), getCValueAppliesto(), "AppliesTo", "Appliesto", "appliesto", inScopeOption);\r
+    public void setAppliesto_LikeSearch(String appliesto, LikeSearchOption likeSearchOption) {\r
+        regLSQ(CK_LS, fRES(appliesto), getCValueAppliesto(), "AppliesTo", likeSearchOption);\r
     }\r
 \r
     /**\r
-     * IsNull(is null). And OnceRegistered.\r
+     * NotLikeSearch(not like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
+     * @param appliesto The value of appliesto as notLikeSearch.\r
+     * @param likeSearchOption The option of not-like-search. (NotNull)\r
      */\r
-    public void setAppliesto_IsNull() { regAppliesto(CK_ISN, DUMMY_OBJECT); }\r
+    public void setAppliesto_NotLikeSearch(String appliesto, LikeSearchOption likeSearchOption) {\r
+        regLSQ(CK_NLS, fRES(appliesto), getCValueAppliesto(), "AppliesTo", likeSearchOption);\r
+    }\r
 \r
     /**\r
-     * IsNotNull(is not null). And OnceRegistered.\r
+     * IsNull(is null). And OnlyOnceRegistered.\r
      */\r
-    public void setAppliesto_IsNotNull() { regAppliesto(CK_ISNN, DUMMY_OBJECT); }\r
+    public void setAppliesto_IsNull() { regAppliesto(CK_ISN, DOBJ); }\r
 \r
-    protected void regAppliesto(ConditionKey key, Object value) {\r
-        registerQuery(key, value, getCValueAppliesto(), "AppliesTo", "Appliesto", "appliesto");\r
-    }\r
-    protected void registerInlineAppliesto(ConditionKey key, Object value) {\r
-        registerInlineQuery(key, value, getCValueAppliesto(), "AppliesTo", "Appliesto", "appliesto");\r
-    }\r
+    /**\r
+     * IsNotNull(is not null). And OnlyOnceRegistered.\r
+     */\r
+    public void setAppliesto_IsNotNull() { regAppliesto(CK_ISNN, DOBJ); }\r
+\r
+    protected void regAppliesto(ConditionKey k, Object v) { regQ(k, v, getCValueAppliesto(), "AppliesTo"); }\r
     abstract protected ConditionValue getCValueAppliesto();\r
 \r
     /**\r
-     * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(255)}\r
+     * Equal(=). And NullOrEmptyIgnored, OnlyOnceRegistered. {VARCHAR(255)}\r
      * @param description The value of description as equal.\r
      */\r
     public void setDescription_Equal(String description) {\r
@@ -247,7 +252,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * NotEqual(!=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param description The value of description as notEqual.\r
      */\r
     public void setDescription_NotEqual(String description) {\r
@@ -255,7 +260,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * GreaterThan(>). And NullOrEmptyIgnored, OnceRegistered.\r
+     * GreaterThan(>). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param description The value of description as greaterThan.\r
      */\r
     public void setDescription_GreaterThan(String description) {\r
@@ -263,7 +268,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LessThan(<). And NullOrEmptyIgnored, OnceRegistered.\r
+     * LessThan(<). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param description The value of description as lessThan.\r
      */\r
     public void setDescription_LessThan(String description) {\r
@@ -271,7 +276,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * GreaterEqual(>=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * GreaterEqual(>=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param description The value of description as greaterEqual.\r
      */\r
     public void setDescription_GreaterEqual(String description) {\r
@@ -279,7 +284,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LessEqual(<=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * LessEqual(<=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param description The value of description as lessEqual.\r
      */\r
     public void setDescription_LessEqual(String description) {\r
@@ -287,7 +292,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
+     * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param description The value of description as prefixSearch.\r
      */\r
     public void setDescription_PrefixSearch(String description) {\r
@@ -295,15 +300,6 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
-     * @param description The value of description as likeSearch.\r
-     * @param likeSearchOption The option of like-search. (NotNull)\r
-     */\r
-    public void setDescription_LikeSearch(String description, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
-        registerLikeSearchQuery(CK_LS, fRES(description), getCValueDescription(), "Description", "Description", "description", likeSearchOption);\r
-    }\r
-\r
-    /**\r
      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
      * @param descriptionList The collection of description as inScope.\r
      */\r
@@ -312,50 +308,49 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
-     * @param description The collection of description as inScope.\r
-     * @param inScopeOption The option of in-scope. (NotNull)\r
+     * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
+     * @param description The value of description as likeSearch.\r
+     * @param likeSearchOption The option of like-search. (NotNull)\r
      */\r
-    public void setDescription_InScope(String description, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
-        registerInScopeQuery(CK_INS, fRES(description), getCValueDescription(), "Description", "Description", "description", inScopeOption);\r
+    public void setDescription_LikeSearch(String description, LikeSearchOption likeSearchOption) {\r
+        regLSQ(CK_LS, fRES(description), getCValueDescription(), "Description", likeSearchOption);\r
     }\r
 \r
     /**\r
-     * IsNull(is null). And OnceRegistered.\r
+     * NotLikeSearch(not like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
+     * @param description The value of description as notLikeSearch.\r
+     * @param likeSearchOption The option of not-like-search. (NotNull)\r
      */\r
-    public void setDescription_IsNull() { regDescription(CK_ISN, DUMMY_OBJECT); }\r
+    public void setDescription_NotLikeSearch(String description, LikeSearchOption likeSearchOption) {\r
+        regLSQ(CK_NLS, fRES(description), getCValueDescription(), "Description", likeSearchOption);\r
+    }\r
 \r
     /**\r
-     * IsNotNull(is not null). And OnceRegistered.\r
+     * IsNull(is null). And OnlyOnceRegistered.\r
      */\r
-    public void setDescription_IsNotNull() { regDescription(CK_ISNN, DUMMY_OBJECT); }\r
+    public void setDescription_IsNull() { regDescription(CK_ISN, DOBJ); }\r
 \r
-    protected void regDescription(ConditionKey key, Object value) {\r
-        registerQuery(key, value, getCValueDescription(), "Description", "Description", "description");\r
-    }\r
-    protected void registerInlineDescription(ConditionKey key, Object value) {\r
-        registerInlineQuery(key, value, getCValueDescription(), "Description", "Description", "description");\r
-    }\r
+    /**\r
+     * IsNotNull(is not null). And OnlyOnceRegistered.\r
+     */\r
+    public void setDescription_IsNotNull() { regDescription(CK_ISNN, DOBJ); }\r
+\r
+    protected void regDescription(ConditionKey k, Object v) { regQ(k, v, getCValueDescription(), "Description"); }\r
     abstract protected ConditionValue getCValueDescription();\r
 \r
     /**\r
-     * Equal(=). And NullIgnored, OnceRegistered. {BIT : NotNull}\r
+     * Equal(=). And NullIgnored, OnlyOnceRegistered. {NotNull : BIT}\r
      * @param mfenabled The value of mfenabled as equal.\r
      */\r
     public void setMfenabled_Equal(Boolean mfenabled) {\r
         regMfenabled(CK_EQ, mfenabled);\r
     }\r
 \r
-    protected void regMfenabled(ConditionKey key, Object value) {\r
-        registerQuery(key, value, getCValueMfenabled(), "MFEnabled", "Mfenabled", "mfenabled");\r
-    }\r
-    protected void registerInlineMfenabled(ConditionKey key, Object value) {\r
-        registerInlineQuery(key, value, getCValueMfenabled(), "MFEnabled", "Mfenabled", "mfenabled");\r
-    }\r
+    protected void regMfenabled(ConditionKey k, Object v) { regQ(k, v, getCValueMfenabled(), "MFEnabled"); }\r
     abstract protected ConditionValue getCValueMfenabled();\r
 \r
     /**\r
-     * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(255)}\r
+     * Equal(=). And NullOrEmptyIgnored, OnlyOnceRegistered. {VARCHAR(255)}\r
      * @param mfpath The value of mfpath as equal.\r
      */\r
     public void setMfpath_Equal(String mfpath) {\r
@@ -363,7 +358,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * NotEqual(!=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param mfpath The value of mfpath as notEqual.\r
      */\r
     public void setMfpath_NotEqual(String mfpath) {\r
@@ -371,7 +366,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * GreaterThan(>). And NullOrEmptyIgnored, OnceRegistered.\r
+     * GreaterThan(>). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param mfpath The value of mfpath as greaterThan.\r
      */\r
     public void setMfpath_GreaterThan(String mfpath) {\r
@@ -379,7 +374,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LessThan(<). And NullOrEmptyIgnored, OnceRegistered.\r
+     * LessThan(<). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param mfpath The value of mfpath as lessThan.\r
      */\r
     public void setMfpath_LessThan(String mfpath) {\r
@@ -387,7 +382,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * GreaterEqual(>=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * GreaterEqual(>=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param mfpath The value of mfpath as greaterEqual.\r
      */\r
     public void setMfpath_GreaterEqual(String mfpath) {\r
@@ -395,7 +390,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LessEqual(<=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * LessEqual(<=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param mfpath The value of mfpath as lessEqual.\r
      */\r
     public void setMfpath_LessEqual(String mfpath) {\r
@@ -403,7 +398,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
+     * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param mfpath The value of mfpath as prefixSearch.\r
      */\r
     public void setMfpath_PrefixSearch(String mfpath) {\r
@@ -411,15 +406,6 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
-     * @param mfpath The value of mfpath as likeSearch.\r
-     * @param likeSearchOption The option of like-search. (NotNull)\r
-     */\r
-    public void setMfpath_LikeSearch(String mfpath, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
-        registerLikeSearchQuery(CK_LS, fRES(mfpath), getCValueMfpath(), "MFPath", "Mfpath", "mfpath", likeSearchOption);\r
-    }\r
-\r
-    /**\r
      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
      * @param mfpathList The collection of mfpath as inScope.\r
      */\r
@@ -428,52 +414,51 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
-     * @param mfpath The collection of mfpath as inScope.\r
-     * @param inScopeOption The option of in-scope. (NotNull)\r
+     * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
+     * @param mfpath The value of mfpath as likeSearch.\r
+     * @param likeSearchOption The option of like-search. (NotNull)\r
      */\r
-    public void setMfpath_InScope(String mfpath, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
-        registerInScopeQuery(CK_INS, fRES(mfpath), getCValueMfpath(), "MFPath", "Mfpath", "mfpath", inScopeOption);\r
+    public void setMfpath_LikeSearch(String mfpath, LikeSearchOption likeSearchOption) {\r
+        regLSQ(CK_LS, fRES(mfpath), getCValueMfpath(), "MFPath", likeSearchOption);\r
     }\r
 \r
     /**\r
-     * IsNull(is null). And OnceRegistered.\r
+     * NotLikeSearch(not like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
+     * @param mfpath The value of mfpath as notLikeSearch.\r
+     * @param likeSearchOption The option of not-like-search. (NotNull)\r
      */\r
-    public void setMfpath_IsNull() { regMfpath(CK_ISN, DUMMY_OBJECT); }\r
+    public void setMfpath_NotLikeSearch(String mfpath, LikeSearchOption likeSearchOption) {\r
+        regLSQ(CK_NLS, fRES(mfpath), getCValueMfpath(), "MFPath", likeSearchOption);\r
+    }\r
 \r
     /**\r
-     * IsNotNull(is not null). And OnceRegistered.\r
+     * IsNull(is null). And OnlyOnceRegistered.\r
      */\r
-    public void setMfpath_IsNotNull() { regMfpath(CK_ISNN, DUMMY_OBJECT); }\r
+    public void setMfpath_IsNull() { regMfpath(CK_ISN, DOBJ); }\r
 \r
-    protected void regMfpath(ConditionKey key, Object value) {\r
-        registerQuery(key, value, getCValueMfpath(), "MFPath", "Mfpath", "mfpath");\r
-    }\r
-    protected void registerInlineMfpath(ConditionKey key, Object value) {\r
-        registerInlineQuery(key, value, getCValueMfpath(), "MFPath", "Mfpath", "mfpath");\r
-    }\r
+    /**\r
+     * IsNotNull(is not null). And OnlyOnceRegistered.\r
+     */\r
+    public void setMfpath_IsNotNull() { regMfpath(CK_ISNN, DOBJ); }\r
+\r
+    protected void regMfpath(ConditionKey k, Object v) { regQ(k, v, getCValueMfpath(), "MFPath"); }\r
     abstract protected ConditionValue getCValueMfpath();\r
 \r
     /**\r
-     * IsNull(is null). And OnceRegistered.\r
+     * IsNull(is null). And OnlyOnceRegistered.\r
      */\r
-    public void setMetafile_IsNull() { regMetafile(CK_ISN, DUMMY_OBJECT); }\r
+    public void setMetafile_IsNull() { regMetafile(CK_ISN, DOBJ); }\r
 \r
     /**\r
-     * IsNotNull(is not null). And OnceRegistered.\r
+     * IsNotNull(is not null). And OnlyOnceRegistered.\r
      */\r
-    public void setMetafile_IsNotNull() { regMetafile(CK_ISNN, DUMMY_OBJECT); }\r
+    public void setMetafile_IsNotNull() { regMetafile(CK_ISNN, DOBJ); }\r
 \r
-    protected void regMetafile(ConditionKey key, Object value) {\r
-        registerQuery(key, value, getCValueMetafile(), "Metafile", "Metafile", "metafile");\r
-    }\r
-    protected void registerInlineMetafile(ConditionKey key, Object value) {\r
-        registerInlineQuery(key, value, getCValueMetafile(), "Metafile", "Metafile", "metafile");\r
-    }\r
+    protected void regMetafile(ConditionKey k, Object v) { regQ(k, v, getCValueMetafile(), "Metafile"); }\r
     abstract protected ConditionValue getCValueMetafile();\r
 \r
     /**\r
-     * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {LONGCHAR(2147483647)}\r
+     * Equal(=). And NullOrEmptyIgnored, OnlyOnceRegistered. {LONGCHAR(2147483647)}\r
      * @param style The value of style as equal.\r
      */\r
     public void setStyle_Equal(String style) {\r
@@ -481,7 +466,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * NotEqual(!=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param style The value of style as notEqual.\r
      */\r
     public void setStyle_NotEqual(String style) {\r
@@ -489,7 +474,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * GreaterThan(>). And NullOrEmptyIgnored, OnceRegistered.\r
+     * GreaterThan(>). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param style The value of style as greaterThan.\r
      */\r
     public void setStyle_GreaterThan(String style) {\r
@@ -497,7 +482,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LessThan(<). And NullOrEmptyIgnored, OnceRegistered.\r
+     * LessThan(<). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param style The value of style as lessThan.\r
      */\r
     public void setStyle_LessThan(String style) {\r
@@ -505,7 +490,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * GreaterEqual(>=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * GreaterEqual(>=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param style The value of style as greaterEqual.\r
      */\r
     public void setStyle_GreaterEqual(String style) {\r
@@ -513,7 +498,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LessEqual(<=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * LessEqual(<=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param style The value of style as lessEqual.\r
      */\r
     public void setStyle_LessEqual(String style) {\r
@@ -521,7 +506,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
+     * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param style The value of style as prefixSearch.\r
      */\r
     public void setStyle_PrefixSearch(String style) {\r
@@ -529,15 +514,6 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
-     * @param style The value of style as likeSearch.\r
-     * @param likeSearchOption The option of like-search. (NotNull)\r
-     */\r
-    public void setStyle_LikeSearch(String style, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
-        registerLikeSearchQuery(CK_LS, fRES(style), getCValueStyle(), "Style", "Style", "style", likeSearchOption);\r
-    }\r
-\r
-    /**\r
      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
      * @param styleList The collection of style as inScope.\r
      */\r
@@ -546,34 +522,38 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
-     * @param style The collection of style as inScope.\r
-     * @param inScopeOption The option of in-scope. (NotNull)\r
+     * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
+     * @param style The value of style as likeSearch.\r
+     * @param likeSearchOption The option of like-search. (NotNull)\r
+     */\r
+    public void setStyle_LikeSearch(String style, LikeSearchOption likeSearchOption) {\r
+        regLSQ(CK_LS, fRES(style), getCValueStyle(), "Style", likeSearchOption);\r
+    }\r
+\r
+    /**\r
+     * NotLikeSearch(not like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
+     * @param style The value of style as notLikeSearch.\r
+     * @param likeSearchOption The option of not-like-search. (NotNull)\r
      */\r
-    public void setStyle_InScope(String style, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
-        registerInScopeQuery(CK_INS, fRES(style), getCValueStyle(), "Style", "Style", "style", inScopeOption);\r
+    public void setStyle_NotLikeSearch(String style, LikeSearchOption likeSearchOption) {\r
+        regLSQ(CK_NLS, fRES(style), getCValueStyle(), "Style", likeSearchOption);\r
     }\r
 \r
     /**\r
-     * IsNull(is null). And OnceRegistered.\r
+     * IsNull(is null). And OnlyOnceRegistered.\r
      */\r
-    public void setStyle_IsNull() { regStyle(CK_ISN, DUMMY_OBJECT); }\r
+    public void setStyle_IsNull() { regStyle(CK_ISN, DOBJ); }\r
 \r
     /**\r
-     * IsNotNull(is not null). And OnceRegistered.\r
+     * IsNotNull(is not null). And OnlyOnceRegistered.\r
      */\r
-    public void setStyle_IsNotNull() { regStyle(CK_ISNN, DUMMY_OBJECT); }\r
+    public void setStyle_IsNotNull() { regStyle(CK_ISNN, DOBJ); }\r
 \r
-    protected void regStyle(ConditionKey key, Object value) {\r
-        registerQuery(key, value, getCValueStyle(), "Style", "Style", "style");\r
-    }\r
-    protected void registerInlineStyle(ConditionKey key, Object value) {\r
-        registerInlineQuery(key, value, getCValueStyle(), "Style", "Style", "style");\r
-    }\r
+    protected void regStyle(ConditionKey k, Object v) { regQ(k, v, getCValueStyle(), "Style"); }\r
     abstract protected ConditionValue getCValueStyle();\r
 \r
     /**\r
-     * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(50)}\r
+     * Equal(=). And NullOrEmptyIgnored, OnlyOnceRegistered. {VARCHAR(50)}\r
      * @param eaGuid The value of eaGuid as equal.\r
      */\r
     public void setEaGuid_Equal(String eaGuid) {\r
@@ -581,7 +561,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * NotEqual(!=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param eaGuid The value of eaGuid as notEqual.\r
      */\r
     public void setEaGuid_NotEqual(String eaGuid) {\r
@@ -589,7 +569,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * GreaterThan(>). And NullOrEmptyIgnored, OnceRegistered.\r
+     * GreaterThan(>). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param eaGuid The value of eaGuid as greaterThan.\r
      */\r
     public void setEaGuid_GreaterThan(String eaGuid) {\r
@@ -597,7 +577,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LessThan(<). And NullOrEmptyIgnored, OnceRegistered.\r
+     * LessThan(<). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param eaGuid The value of eaGuid as lessThan.\r
      */\r
     public void setEaGuid_LessThan(String eaGuid) {\r
@@ -605,7 +585,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * GreaterEqual(>=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * GreaterEqual(>=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param eaGuid The value of eaGuid as greaterEqual.\r
      */\r
     public void setEaGuid_GreaterEqual(String eaGuid) {\r
@@ -613,7 +593,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LessEqual(<=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * LessEqual(<=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param eaGuid The value of eaGuid as lessEqual.\r
      */\r
     public void setEaGuid_LessEqual(String eaGuid) {\r
@@ -621,7 +601,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
+     * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param eaGuid The value of eaGuid as prefixSearch.\r
      */\r
     public void setEaGuid_PrefixSearch(String eaGuid) {\r
@@ -629,15 +609,6 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
-     * @param eaGuid The value of eaGuid as likeSearch.\r
-     * @param likeSearchOption The option of like-search. (NotNull)\r
-     */\r
-    public void setEaGuid_LikeSearch(String eaGuid, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
-        registerLikeSearchQuery(CK_LS, fRES(eaGuid), getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid", likeSearchOption);\r
-    }\r
-\r
-    /**\r
      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
      * @param eaGuidList The collection of eaGuid as inScope.\r
      */\r
@@ -646,34 +617,38 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
-     * @param eaGuid The collection of eaGuid as inScope.\r
-     * @param inScopeOption The option of in-scope. (NotNull)\r
+     * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
+     * @param eaGuid The value of eaGuid as likeSearch.\r
+     * @param likeSearchOption The option of like-search. (NotNull)\r
      */\r
-    public void setEaGuid_InScope(String eaGuid, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
-        registerInScopeQuery(CK_INS, fRES(eaGuid), getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid", inScopeOption);\r
+    public void setEaGuid_LikeSearch(String eaGuid, LikeSearchOption likeSearchOption) {\r
+        regLSQ(CK_LS, fRES(eaGuid), getCValueEaGuid(), "ea_guid", likeSearchOption);\r
     }\r
 \r
     /**\r
-     * IsNull(is null). And OnceRegistered.\r
+     * NotLikeSearch(not like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
+     * @param eaGuid The value of eaGuid as notLikeSearch.\r
+     * @param likeSearchOption The option of not-like-search. (NotNull)\r
      */\r
-    public void setEaGuid_IsNull() { regEaGuid(CK_ISN, DUMMY_OBJECT); }\r
+    public void setEaGuid_NotLikeSearch(String eaGuid, LikeSearchOption likeSearchOption) {\r
+        regLSQ(CK_NLS, fRES(eaGuid), getCValueEaGuid(), "ea_guid", likeSearchOption);\r
+    }\r
 \r
     /**\r
-     * IsNotNull(is not null). And OnceRegistered.\r
+     * IsNull(is null). And OnlyOnceRegistered.\r
      */\r
-    public void setEaGuid_IsNotNull() { regEaGuid(CK_ISNN, DUMMY_OBJECT); }\r
+    public void setEaGuid_IsNull() { regEaGuid(CK_ISN, DOBJ); }\r
 \r
-    protected void regEaGuid(ConditionKey key, Object value) {\r
-        registerQuery(key, value, getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid");\r
-    }\r
-    protected void registerInlineEaGuid(ConditionKey key, Object value) {\r
-        registerInlineQuery(key, value, getCValueEaGuid(), "ea_guid", "EaGuid", "eaGuid");\r
-    }\r
+    /**\r
+     * IsNotNull(is not null). And OnlyOnceRegistered.\r
+     */\r
+    public void setEaGuid_IsNotNull() { regEaGuid(CK_ISNN, DOBJ); }\r
+\r
+    protected void regEaGuid(ConditionKey k, Object v) { regQ(k, v, getCValueEaGuid(), "ea_guid"); }\r
     abstract protected ConditionValue getCValueEaGuid();\r
 \r
     /**\r
-     * Equal(=). And NullOrEmptyIgnored, OnceRegistered. {VARCHAR(100)}\r
+     * Equal(=). And NullOrEmptyIgnored, OnlyOnceRegistered. {VARCHAR(100)}\r
      * @param visualtype The value of visualtype as equal.\r
      */\r
     public void setVisualtype_Equal(String visualtype) {\r
@@ -681,7 +656,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * NotEqual(!=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * NotEqual(!=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param visualtype The value of visualtype as notEqual.\r
      */\r
     public void setVisualtype_NotEqual(String visualtype) {\r
@@ -689,7 +664,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * GreaterThan(>). And NullOrEmptyIgnored, OnceRegistered.\r
+     * GreaterThan(>). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param visualtype The value of visualtype as greaterThan.\r
      */\r
     public void setVisualtype_GreaterThan(String visualtype) {\r
@@ -697,7 +672,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LessThan(<). And NullOrEmptyIgnored, OnceRegistered.\r
+     * LessThan(<). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param visualtype The value of visualtype as lessThan.\r
      */\r
     public void setVisualtype_LessThan(String visualtype) {\r
@@ -705,7 +680,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * GreaterEqual(>=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * GreaterEqual(>=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param visualtype The value of visualtype as greaterEqual.\r
      */\r
     public void setVisualtype_GreaterEqual(String visualtype) {\r
@@ -713,7 +688,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LessEqual(<=). And NullOrEmptyIgnored, OnceRegistered.\r
+     * LessEqual(<=). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param visualtype The value of visualtype as lessEqual.\r
      */\r
     public void setVisualtype_LessEqual(String visualtype) {\r
@@ -721,7 +696,7 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnceRegistered.\r
+     * PrefixSearch(like 'xxx%'). And NullOrEmptyIgnored, OnlyOnceRegistered.\r
      * @param visualtype The value of visualtype as prefixSearch.\r
      */\r
     public void setVisualtype_PrefixSearch(String visualtype) {\r
@@ -729,15 +704,6 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
-     * @param visualtype The value of visualtype as likeSearch.\r
-     * @param likeSearchOption The option of like-search. (NotNull)\r
-     */\r
-    public void setVisualtype_LikeSearch(String visualtype, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.LikeSearchOption likeSearchOption) {\r
-        registerLikeSearchQuery(CK_LS, fRES(visualtype), getCValueVisualtype(), "VisualType", "Visualtype", "visualtype", likeSearchOption);\r
-    }\r
-\r
-    /**\r
      * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
      * @param visualtypeList The collection of visualtype as inScope.\r
      */\r
@@ -746,33 +712,41 @@ public abstract class AbstractBsTStereotypesCQ extends AbstractConditionQuery {
     }\r
 \r
     /**\r
-     * InScope(in ('a', 'b')). And NullOrEmptyIgnored, NullOrEmptyElementIgnored, SeveralRegistered.\r
-     * @param visualtype The collection of visualtype as inScope.\r
-     * @param inScopeOption The option of in-scope. (NotNull)\r
+     * LikeSearch(like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
+     * @param visualtype The value of visualtype as likeSearch.\r
+     * @param likeSearchOption The option of like-search. (NotNull)\r
      */\r
-    public void setVisualtype_InScope(String visualtype, jp.sourceforge.ea2ddl.dao.allcommon.cbean.coption.InScopeOption inScopeOption) {\r
-        registerInScopeQuery(CK_INS, fRES(visualtype), getCValueVisualtype(), "VisualType", "Visualtype", "visualtype", inScopeOption);\r
+    public void setVisualtype_LikeSearch(String visualtype, LikeSearchOption likeSearchOption) {\r
+        regLSQ(CK_LS, fRES(visualtype), getCValueVisualtype(), "VisualType", likeSearchOption);\r
     }\r
 \r
     /**\r
-     * IsNull(is null). And OnceRegistered.\r
+     * NotLikeSearch(not like 'xxx%' escape ...). And NullOrEmptyIgnored, SeveralRegistered.\r
+     * @param visualtype The value of visualtype as notLikeSearch.\r
+     * @param likeSearchOption The option of not-like-search. (NotNull)\r
      */\r
-    public void setVisualtype_IsNull() { regVisualtype(CK_ISN, DUMMY_OBJECT); }\r
+    public void setVisualtype_NotLikeSearch(String visualtype, LikeSearchOption likeSearchOption) {\r
+        regLSQ(CK_NLS, fRES(visualtype), getCValueVisualtype(), "VisualType", likeSearchOption);\r
+    }\r
 \r
     /**\r
-     * IsNotNull(is not null). And OnceRegistered.\r
+     * IsNull(is null). And OnlyOnceRegistered.\r
      */\r
-    public void setVisualtype_IsNotNull() { regVisualtype(CK_ISNN, DUMMY_OBJECT); }\r
+    public void setVisualtype_IsNull() { regVisualtype(CK_ISN, DOBJ); }\r
 \r
-    protected void regVisualtype(ConditionKey key, Object value) {\r
-        registerQuery(key, value, getCValueVisualtype(), "VisualType", "Visualtype", "visualtype");\r
-    }\r
-    protected void registerInlineVisualtype(ConditionKey key, Object value) {\r
-        registerInlineQuery(key, value, getCValueVisualtype(), "VisualType", "Visualtype", "visualtype");\r
-    }\r
+    /**\r
+     * IsNotNull(is not null). And OnlyOnceRegistered.\r
+     */\r
+    public void setVisualtype_IsNotNull() { regVisualtype(CK_ISNN, DOBJ); }\r
+\r
+    protected void regVisualtype(ConditionKey k, Object v) { regQ(k, v, getCValueVisualtype(), "VisualType"); }\r
     abstract protected ConditionValue getCValueVisualtype();\r
 \r
+    // ===================================================================================\r
+    //                                                                       Very Internal\r
+    //                                                                       =============\r
     // Very Internal (for Suppressing Warn about 'Not Use Import')\r
-    protected String getConditionBeanClassNameInternally() { return TStereotypesCB.class.getName(); }\r
-    protected String getConditionQueryClassNameInternally() { return TStereotypesCQ.class.getName(); }\r
+    String xCB() { return TStereotypesCB.class.getName(); }\r
+    String xCQ() { return TStereotypesCQ.class.getName(); }\r
+    String xLSO() { return LikeSearchOption.class.getName(); }\r
 }\r