OSDN Git Service

DBFlute-0.9.3に更新
[ea2ddl/ea2ddl.git] / ea2ddl-dao / src / main / java / jp / sourceforge / ea2ddl / dao / bsentity / BsTProblemtypes.java
index d3a90b1..1fd74f0 100644 (file)
@@ -1,13 +1,14 @@
 package jp.sourceforge.ea2ddl.dao.bsentity;\r
 \r
+import java.io.Serializable;\r
 import java.util.*;\r
-    \r
-import jp.sourceforge.ea2ddl.dao.allcommon.Entity;\r
-import jp.sourceforge.ea2ddl.dao.allcommon.dbmeta.DBMeta;\r
-import jp.sourceforge.ea2ddl.dao.allcommon.dbmeta.DBMetaInstanceHandler;\r
+\r
+import org.seasar.dbflute.Entity;\r
+import org.seasar.dbflute.dbmeta.DBMeta;\r
+import jp.sourceforge.ea2ddl.dao.allcommon.DBMetaInstanceHandler;\r
 \r
 /**\r
- * The entity of t_problemtypes(TABLE).\r
+ * The entity of t_problemtypes that the type is TABLE. <br />\r
  * <pre>\r
  * [primary-key]\r
  *     \r
@@ -37,9 +38,8 @@ import jp.sourceforge.ea2ddl.dao.allcommon.dbmeta.DBMetaInstanceHandler;
  *     \r
  * </pre>\r
  * @author DBFlute(AutoGenerator)\r
- */
-@SuppressWarnings("unchecked")\r
-public abstract class BsTProblemtypes implements Entity, java.io.Serializable {\r
+ */\r
+public abstract class BsTProblemtypes implements Entity, Serializable {\r
 \r
     // ===================================================================================\r
     //                                                                          Definition\r
@@ -47,26 +47,22 @@ public abstract class BsTProblemtypes implements Entity, java.io.Serializable {
     /** Serial version UID. (Default) */\r
     private static final long serialVersionUID = 1L;\r
 \r
-    /** TABLE-Annotation for S2Dao. The value is t_problemtypes. */\r
-    public static final String TABLE = "t_problemtypes";\r
-\r
-\r
     // ===================================================================================\r
     //                                                                           Attribute\r
     //                                                                           =========\r
     // -----------------------------------------------------\r
     //                                                Column\r
     //                                                ------\r
-    /** The attribute of the column 'ProblemType'. {UQ : VARCHAR(12)} */\r
+    /** ProblemType: {UQ : VARCHAR(12)} */\r
     protected String _problemtype;\r
 \r
-    /** The attribute of the column 'Description'. {VARCHAR(255)} */\r
+    /** Description: {VARCHAR(255)} */\r
     protected String _description;\r
 \r
-    /** The attribute of the column 'NumericWeight'. {DOUBLE} */\r
+    /** NumericWeight: {DOUBLE} */\r
     protected java.math.BigDecimal _numericweight;\r
 \r
-    /** The attribute of the column 'Notes'. {VARCHAR(255)} */\r
+    /** Notes: {VARCHAR(255)} */\r
     protected String _notes;\r
 \r
     // -----------------------------------------------------\r
@@ -76,19 +72,13 @@ public abstract class BsTProblemtypes implements Entity, java.io.Serializable {
     protected EntityModifiedProperties _modifiedProperties = newEntityModifiedProperties();\r
     \r
     // ===================================================================================\r
-    //                                                                         Constructor\r
-    //                                                                         ===========\r
-    public BsTProblemtypes() {\r
-    }\r
-\r
-    // ===================================================================================\r
     //                                                                          Table Name\r
     //                                                                          ==========\r
     public String getTableDbName() {\r
         return "t_problemtypes";\r
     }\r
 \r
-    public String getTablePropertyName() {// as JavaBeansRule\r
+    public String getTablePropertyName() { // as JavaBeansRule\r
         return "TProblemtypes";\r
     }\r
 \r
@@ -114,7 +104,6 @@ public abstract class BsTProblemtypes implements Entity, java.io.Serializable {
     // ===================================================================================\r
     //                                                                   Referrer Property\r
     //                                                                   =================\r
-\r
     // ===================================================================================\r
     //                                                                       Determination\r
     //                                                                       =============\r
@@ -195,13 +184,8 @@ public abstract class BsTProblemtypes implements Entity, java.io.Serializable {
     // ===================================================================================\r
     //                                                                            Accessor\r
     //                                                                            ========\r
-\r
-    /** The column annotation for S2Dao. {UQ : VARCHAR(12)} */\r
-    public static final String problemtype_COLUMN = "ProblemType";\r
-\r
     /**\r
-     * Get the value of the column 'ProblemType'. <br />\r
-     * {UQ : VARCHAR(12)}\r
+     * ProblemType: {UQ : VARCHAR(12)} <br />\r
      * @return The value of the column 'ProblemType'. (Nullable)\r
      */\r
     public String getProblemtype() {\r
@@ -209,8 +193,7 @@ public abstract class BsTProblemtypes implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'ProblemType'. <br />\r
-     * {UQ : VARCHAR(12)}\r
+     * ProblemType: {UQ : VARCHAR(12)} <br />\r
      * @param problemtype The value of the column 'ProblemType'. (Nullable)\r
      */\r
     public void setProblemtype(String problemtype) {\r
@@ -218,12 +201,8 @@ public abstract class BsTProblemtypes implements Entity, java.io.Serializable {
         this._problemtype = problemtype;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {VARCHAR(255)} */\r
-    public static final String description_COLUMN = "Description";\r
-\r
     /**\r
-     * Get the value of the column 'Description'. <br />\r
-     * {VARCHAR(255)}\r
+     * Description: {VARCHAR(255)} <br />\r
      * @return The value of the column 'Description'. (Nullable)\r
      */\r
     public String getDescription() {\r
@@ -231,8 +210,7 @@ public abstract class BsTProblemtypes implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'Description'. <br />\r
-     * {VARCHAR(255)}\r
+     * Description: {VARCHAR(255)} <br />\r
      * @param description The value of the column 'Description'. (Nullable)\r
      */\r
     public void setDescription(String description) {\r
@@ -240,12 +218,8 @@ public abstract class BsTProblemtypes implements Entity, java.io.Serializable {
         this._description = description;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {DOUBLE} */\r
-    public static final String numericweight_COLUMN = "NumericWeight";\r
-\r
     /**\r
-     * Get the value of the column 'NumericWeight'. <br />\r
-     * {DOUBLE}\r
+     * NumericWeight: {DOUBLE} <br />\r
      * @return The value of the column 'NumericWeight'. (Nullable)\r
      */\r
     public java.math.BigDecimal getNumericweight() {\r
@@ -253,8 +227,7 @@ public abstract class BsTProblemtypes implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'NumericWeight'. <br />\r
-     * {DOUBLE}\r
+     * NumericWeight: {DOUBLE} <br />\r
      * @param numericweight The value of the column 'NumericWeight'. (Nullable)\r
      */\r
     public void setNumericweight(java.math.BigDecimal numericweight) {\r
@@ -262,12 +235,8 @@ public abstract class BsTProblemtypes implements Entity, java.io.Serializable {
         this._numericweight = numericweight;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {VARCHAR(255)} */\r
-    public static final String notes_COLUMN = "Notes";\r
-\r
     /**\r
-     * Get the value of the column 'Notes'. <br />\r
-     * {VARCHAR(255)}\r
+     * Notes: {VARCHAR(255)} <br />\r
      * @return The value of the column 'Notes'. (Nullable)\r
      */\r
     public String getNotes() {\r
@@ -275,13 +244,11 @@ public abstract class BsTProblemtypes implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'Notes'. <br />\r
-     * {VARCHAR(255)}\r
+     * Notes: {VARCHAR(255)} <br />\r
      * @param notes The value of the column 'Notes'. (Nullable)\r
      */\r
     public void setNotes(String notes) {\r
         _modifiedProperties.addPropertyName("notes");\r
         this._notes = notes;\r
     }\r
-\r
 }\r