OSDN Git Service

accessにつながるようになった気がする
[ea2ddl/ea2ddl.git] / ea2ddl-dao / src / main / java / jp / sourceforge / ea2ddl / dao / bsbhv / BsTIssuesBhv.java
index 4f91ac3..6412cff 100644 (file)
@@ -7,6 +7,7 @@ import jp.sourceforge.ea2ddl.dao.allcommon.*;
 import jp.sourceforge.ea2ddl.dao.allcommon.bhv.setup.ValueLabelSetupper;\r
 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.ConditionBean;\r
 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.ListResultBean;\r
+import jp.sourceforge.ea2ddl.dao.allcommon.cbean.ResultBeanBuilder;\r
 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.PagingHandler;\r
 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.PagingInvoker;\r
 import jp.sourceforge.ea2ddl.dao.allcommon.cbean.PagingBean;\r
@@ -137,22 +138,22 @@ public abstract class BsTIssuesBhv extends jp.sourceforge.ea2ddl.dao.allcommon.b
     //                                                                         List Select\r
     //                                                                         ===========\r
     /**\r
-     * Select the list as result-bean.\r
+     * Select the list as result bean.\r
      * @param cb The condition-bean of TIssues. (NotNull)\r
-     * @return The result-bean of selected list. (NotNull)\r
+     * @return The result bean of selected list. (NotNull)\r
      */\r
     public ListResultBean<TIssues> selectList(TIssuesCB cb) {\r
         assertConditionBeanNotNull(cb);\r
-        return new jp.sourceforge.ea2ddl.dao.allcommon.cbean.ResultBeanBuilder<TIssues>(getTableDbName()).buildListResultBean(cb, delegateSelectList(cb));\r
+        return new ResultBeanBuilder<TIssues>(getTableDbName()).buildListResultBean(cb, delegateSelectList(cb));\r
     }\r
 \r
     // ===================================================================================\r
     //                                                                         Page Select\r
     //                                                                         ===========\r
     /**\r
-     * Select the page as result-bean.\r
+     * Select the page as result bean.\r
      * @param cb The condition-bean of TIssues. (NotNull)\r
-     * @return The result-bean of selected page. (NotNull)\r
+     * @return The result bean of selected page. (NotNull)\r
      */\r
     public PagingResultBean<TIssues> selectPage(final TIssuesCB cb) {\r
         assertConditionBeanNotNull(cb);\r