OSDN Git Service

EAからOracle用DDLが吐けるようになった
[ea2ddl/ea2ddl.git] / ea2ddl-dao / src / main / java / jp / sourceforge / ea2ddl / dao / bsbhv / BsTObjectpropertiesBhv.java
index 7d64a88..8e2db7c 100644 (file)
@@ -38,13 +38,13 @@ import jp.sourceforge.ea2ddl.dao.cbean.*;
  *     \r
  * \r
  * [foreign-table]\r
- *     \r
+ *     t_object\r
  * \r
  * [referrer-table]\r
  *     \r
  * \r
  * [foreign-property]\r
- *     \r
+ *     tObject\r
  * \r
  * [referrer-property]\r
  *     \r
@@ -184,6 +184,15 @@ public abstract class BsTObjectpropertiesBhv extends jp.sourceforge.ea2ddl.dao.a
     // ===================================================================================\r
     //                                                                     Pullout Foreign\r
     //                                                                     ===============\r
+    /**\r
+     * Pull out the list of foreign table 'TObject'.\r
+     * @param tObjectpropertiesList The list of tObjectproperties. (NotNull)\r
+     * @return The list of foreign table. (NotNull)\r
+     */\r
+    public List<TObject> pulloutTObject(List<TObjectproperties> tObjectpropertiesList) {\r
+        return helpPulloutInternally(tObjectpropertiesList, new InternalPulloutCallback<TObjectproperties, TObject>() {\r
+            public TObject callbackGetForeignEntity(TObjectproperties entity) { return entity.getTObject(); } });\r
+    }\r
   \r
     // ===================================================================================\r
     //                                                                     Delegate Method\r