OSDN Git Service

DBFlute-0.9.3に更新
[ea2ddl/ea2ddl.git] / ea2ddl-dao / src / main / java / jp / sourceforge / ea2ddl / dao / bsentity / BsTTasks.java
index 39b40c4..3a8de08 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_tasks(TABLE).\r
+ * The entity of t_tasks 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 BsTTasks implements Entity, java.io.Serializable {\r
+ */\r
+public abstract class BsTTasks implements Entity, Serializable {\r
 \r
     // ===================================================================================\r
     //                                                                          Definition\r
@@ -47,59 +47,55 @@ public abstract class BsTTasks 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_tasks. */\r
-    public static final String TABLE = "t_tasks";\r
-\r
-\r
     // ===================================================================================\r
     //                                                                           Attribute\r
     //                                                                           =========\r
     // -----------------------------------------------------\r
     //                                                Column\r
     //                                                ------\r
-    /** The attribute of the column 'TaskID'. {UQ : COUNTER : NotNull} */\r
+    /** TaskID: {UQ : NotNull : COUNTER} */\r
     protected java.lang.Integer _taskid;\r
 \r
-    /** The attribute of the column 'Name'. {VARCHAR(255)} */\r
+    /** Name: {VARCHAR(255)} */\r
     protected String _name;\r
 \r
-    /** The attribute of the column 'TaskType'. {VARCHAR(255)} */\r
+    /** TaskType: {VARCHAR(255)} */\r
     protected String _tasktype;\r
 \r
-    /** The attribute of the column 'NOTES'. {LONGCHAR(2147483647)} */\r
+    /** NOTES: {LONGCHAR(2147483647)} */\r
     protected String _notes;\r
 \r
-    /** The attribute of the column 'Priority'. {VARCHAR(255)} */\r
+    /** Priority: {VARCHAR(255)} */\r
     protected String _priority;\r
 \r
-    /** The attribute of the column 'Status'. {VARCHAR(255)} */\r
+    /** Status: {VARCHAR(255)} */\r
     protected String _status;\r
 \r
-    /** The attribute of the column 'Owner'. {VARCHAR(255)} */\r
+    /** Owner: {VARCHAR(255)} */\r
     protected String _owner;\r
 \r
-    /** The attribute of the column 'StartDate'. {DATETIME} */\r
+    /** StartDate: {DATETIME} */\r
     protected java.sql.Timestamp _startdate;\r
 \r
-    /** The attribute of the column 'EndDate'. {DATETIME} */\r
+    /** EndDate: {DATETIME} */\r
     protected java.sql.Timestamp _enddate;\r
 \r
-    /** The attribute of the column 'Phase'. {VARCHAR(50)} */\r
+    /** Phase: {VARCHAR(50)} */\r
     protected String _phase;\r
 \r
-    /** The attribute of the column 'History'. {LONGCHAR(2147483647)} */\r
+    /** History: {LONGCHAR(2147483647)} */\r
     protected String _history;\r
 \r
-    /** The attribute of the column 'Percent'. {INTEGER} */\r
+    /** Percent: {INTEGER} */\r
     protected java.lang.Integer _percent;\r
 \r
-    /** The attribute of the column 'TotalTime'. {INTEGER} */\r
+    /** TotalTime: {INTEGER} */\r
     protected java.lang.Integer _totaltime;\r
 \r
-    /** The attribute of the column 'ActualTime'. {INTEGER} */\r
+    /** ActualTime: {INTEGER} */\r
     protected java.lang.Integer _actualtime;\r
 \r
-    /** The attribute of the column 'AssignedTo'. {VARCHAR(100)} */\r
+    /** AssignedTo: {VARCHAR(100)} */\r
     protected String _assignedto;\r
 \r
     // -----------------------------------------------------\r
@@ -109,19 +105,13 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     protected EntityModifiedProperties _modifiedProperties = newEntityModifiedProperties();\r
     \r
     // ===================================================================================\r
-    //                                                                         Constructor\r
-    //                                                                         ===========\r
-    public BsTTasks() {\r
-    }\r
-\r
-    // ===================================================================================\r
     //                                                                          Table Name\r
     //                                                                          ==========\r
     public String getTableDbName() {\r
         return "t_tasks";\r
     }\r
 \r
-    public String getTablePropertyName() {// as JavaBeansRule\r
+    public String getTablePropertyName() { // as JavaBeansRule\r
         return "TTasks";\r
     }\r
 \r
@@ -147,7 +137,6 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     // ===================================================================================\r
     //                                                                   Referrer Property\r
     //                                                                   =================\r
-\r
     // ===================================================================================\r
     //                                                                       Determination\r
     //                                                                       =============\r
@@ -261,13 +250,8 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     // ===================================================================================\r
     //                                                                            Accessor\r
     //                                                                            ========\r
-\r
-    /** The column annotation for S2Dao. {UQ : COUNTER : NotNull} */\r
-    public static final String taskid_COLUMN = "TaskID";\r
-\r
     /**\r
-     * Get the value of the column 'TaskID'. <br />\r
-     * {UQ : COUNTER : NotNull}\r
+     * TaskID: {UQ : NotNull : COUNTER} <br />\r
      * @return The value of the column 'TaskID'. (Nullable)\r
      */\r
     public java.lang.Integer getTaskid() {\r
@@ -275,8 +259,7 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'TaskID'. <br />\r
-     * {UQ : COUNTER : NotNull}\r
+     * TaskID: {UQ : NotNull : COUNTER} <br />\r
      * @param taskid The value of the column 'TaskID'. (Nullable)\r
      */\r
     public void setTaskid(java.lang.Integer taskid) {\r
@@ -284,12 +267,8 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
         this._taskid = taskid;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {VARCHAR(255)} */\r
-    public static final String name_COLUMN = "Name";\r
-\r
     /**\r
-     * Get the value of the column 'Name'. <br />\r
-     * {VARCHAR(255)}\r
+     * Name: {VARCHAR(255)} <br />\r
      * @return The value of the column 'Name'. (Nullable)\r
      */\r
     public String getName() {\r
@@ -297,8 +276,7 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'Name'. <br />\r
-     * {VARCHAR(255)}\r
+     * Name: {VARCHAR(255)} <br />\r
      * @param name The value of the column 'Name'. (Nullable)\r
      */\r
     public void setName(String name) {\r
@@ -306,12 +284,8 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
         this._name = name;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {VARCHAR(255)} */\r
-    public static final String tasktype_COLUMN = "TaskType";\r
-\r
     /**\r
-     * Get the value of the column 'TaskType'. <br />\r
-     * {VARCHAR(255)}\r
+     * TaskType: {VARCHAR(255)} <br />\r
      * @return The value of the column 'TaskType'. (Nullable)\r
      */\r
     public String getTasktype() {\r
@@ -319,8 +293,7 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'TaskType'. <br />\r
-     * {VARCHAR(255)}\r
+     * TaskType: {VARCHAR(255)} <br />\r
      * @param tasktype The value of the column 'TaskType'. (Nullable)\r
      */\r
     public void setTasktype(String tasktype) {\r
@@ -328,12 +301,8 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
         this._tasktype = tasktype;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {LONGCHAR(2147483647)} */\r
-    public static final String notes_COLUMN = "NOTES";\r
-\r
     /**\r
-     * Get the value of the column 'NOTES'. <br />\r
-     * {LONGCHAR(2147483647)}\r
+     * NOTES: {LONGCHAR(2147483647)} <br />\r
      * @return The value of the column 'NOTES'. (Nullable)\r
      */\r
     public String getNotes() {\r
@@ -341,8 +310,7 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'NOTES'. <br />\r
-     * {LONGCHAR(2147483647)}\r
+     * NOTES: {LONGCHAR(2147483647)} <br />\r
      * @param notes The value of the column 'NOTES'. (Nullable)\r
      */\r
     public void setNotes(String notes) {\r
@@ -350,12 +318,8 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
         this._notes = notes;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {VARCHAR(255)} */\r
-    public static final String priority_COLUMN = "Priority";\r
-\r
     /**\r
-     * Get the value of the column 'Priority'. <br />\r
-     * {VARCHAR(255)}\r
+     * Priority: {VARCHAR(255)} <br />\r
      * @return The value of the column 'Priority'. (Nullable)\r
      */\r
     public String getPriority() {\r
@@ -363,8 +327,7 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'Priority'. <br />\r
-     * {VARCHAR(255)}\r
+     * Priority: {VARCHAR(255)} <br />\r
      * @param priority The value of the column 'Priority'. (Nullable)\r
      */\r
     public void setPriority(String priority) {\r
@@ -372,12 +335,8 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
         this._priority = priority;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {VARCHAR(255)} */\r
-    public static final String status_COLUMN = "Status";\r
-\r
     /**\r
-     * Get the value of the column 'Status'. <br />\r
-     * {VARCHAR(255)}\r
+     * Status: {VARCHAR(255)} <br />\r
      * @return The value of the column 'Status'. (Nullable)\r
      */\r
     public String getStatus() {\r
@@ -385,8 +344,7 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'Status'. <br />\r
-     * {VARCHAR(255)}\r
+     * Status: {VARCHAR(255)} <br />\r
      * @param status The value of the column 'Status'. (Nullable)\r
      */\r
     public void setStatus(String status) {\r
@@ -394,12 +352,8 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
         this._status = status;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {VARCHAR(255)} */\r
-    public static final String owner_COLUMN = "Owner";\r
-\r
     /**\r
-     * Get the value of the column 'Owner'. <br />\r
-     * {VARCHAR(255)}\r
+     * Owner: {VARCHAR(255)} <br />\r
      * @return The value of the column 'Owner'. (Nullable)\r
      */\r
     public String getOwner() {\r
@@ -407,8 +361,7 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'Owner'. <br />\r
-     * {VARCHAR(255)}\r
+     * Owner: {VARCHAR(255)} <br />\r
      * @param owner The value of the column 'Owner'. (Nullable)\r
      */\r
     public void setOwner(String owner) {\r
@@ -416,12 +369,8 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
         this._owner = owner;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {DATETIME} */\r
-    public static final String startdate_COLUMN = "StartDate";\r
-\r
     /**\r
-     * Get the value of the column 'StartDate'. <br />\r
-     * {DATETIME}\r
+     * StartDate: {DATETIME} <br />\r
      * @return The value of the column 'StartDate'. (Nullable)\r
      */\r
     public java.sql.Timestamp getStartdate() {\r
@@ -429,8 +378,7 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'StartDate'. <br />\r
-     * {DATETIME}\r
+     * StartDate: {DATETIME} <br />\r
      * @param startdate The value of the column 'StartDate'. (Nullable)\r
      */\r
     public void setStartdate(java.sql.Timestamp startdate) {\r
@@ -438,12 +386,8 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
         this._startdate = startdate;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {DATETIME} */\r
-    public static final String enddate_COLUMN = "EndDate";\r
-\r
     /**\r
-     * Get the value of the column 'EndDate'. <br />\r
-     * {DATETIME}\r
+     * EndDate: {DATETIME} <br />\r
      * @return The value of the column 'EndDate'. (Nullable)\r
      */\r
     public java.sql.Timestamp getEnddate() {\r
@@ -451,8 +395,7 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'EndDate'. <br />\r
-     * {DATETIME}\r
+     * EndDate: {DATETIME} <br />\r
      * @param enddate The value of the column 'EndDate'. (Nullable)\r
      */\r
     public void setEnddate(java.sql.Timestamp enddate) {\r
@@ -460,12 +403,8 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
         this._enddate = enddate;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {VARCHAR(50)} */\r
-    public static final String phase_COLUMN = "Phase";\r
-\r
     /**\r
-     * Get the value of the column 'Phase'. <br />\r
-     * {VARCHAR(50)}\r
+     * Phase: {VARCHAR(50)} <br />\r
      * @return The value of the column 'Phase'. (Nullable)\r
      */\r
     public String getPhase() {\r
@@ -473,8 +412,7 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'Phase'. <br />\r
-     * {VARCHAR(50)}\r
+     * Phase: {VARCHAR(50)} <br />\r
      * @param phase The value of the column 'Phase'. (Nullable)\r
      */\r
     public void setPhase(String phase) {\r
@@ -482,12 +420,8 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
         this._phase = phase;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {LONGCHAR(2147483647)} */\r
-    public static final String history_COLUMN = "History";\r
-\r
     /**\r
-     * Get the value of the column 'History'. <br />\r
-     * {LONGCHAR(2147483647)}\r
+     * History: {LONGCHAR(2147483647)} <br />\r
      * @return The value of the column 'History'. (Nullable)\r
      */\r
     public String getHistory() {\r
@@ -495,8 +429,7 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'History'. <br />\r
-     * {LONGCHAR(2147483647)}\r
+     * History: {LONGCHAR(2147483647)} <br />\r
      * @param history The value of the column 'History'. (Nullable)\r
      */\r
     public void setHistory(String history) {\r
@@ -504,12 +437,8 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
         this._history = history;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {INTEGER} */\r
-    public static final String percent_COLUMN = "Percent";\r
-\r
     /**\r
-     * Get the value of the column 'Percent'. <br />\r
-     * {INTEGER}\r
+     * Percent: {INTEGER} <br />\r
      * @return The value of the column 'Percent'. (Nullable)\r
      */\r
     public java.lang.Integer getPercent() {\r
@@ -517,8 +446,7 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'Percent'. <br />\r
-     * {INTEGER}\r
+     * Percent: {INTEGER} <br />\r
      * @param percent The value of the column 'Percent'. (Nullable)\r
      */\r
     public void setPercent(java.lang.Integer percent) {\r
@@ -526,12 +454,8 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
         this._percent = percent;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {INTEGER} */\r
-    public static final String totaltime_COLUMN = "TotalTime";\r
-\r
     /**\r
-     * Get the value of the column 'TotalTime'. <br />\r
-     * {INTEGER}\r
+     * TotalTime: {INTEGER} <br />\r
      * @return The value of the column 'TotalTime'. (Nullable)\r
      */\r
     public java.lang.Integer getTotaltime() {\r
@@ -539,8 +463,7 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'TotalTime'. <br />\r
-     * {INTEGER}\r
+     * TotalTime: {INTEGER} <br />\r
      * @param totaltime The value of the column 'TotalTime'. (Nullable)\r
      */\r
     public void setTotaltime(java.lang.Integer totaltime) {\r
@@ -548,12 +471,8 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
         this._totaltime = totaltime;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {INTEGER} */\r
-    public static final String actualtime_COLUMN = "ActualTime";\r
-\r
     /**\r
-     * Get the value of the column 'ActualTime'. <br />\r
-     * {INTEGER}\r
+     * ActualTime: {INTEGER} <br />\r
      * @return The value of the column 'ActualTime'. (Nullable)\r
      */\r
     public java.lang.Integer getActualtime() {\r
@@ -561,8 +480,7 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'ActualTime'. <br />\r
-     * {INTEGER}\r
+     * ActualTime: {INTEGER} <br />\r
      * @param actualtime The value of the column 'ActualTime'. (Nullable)\r
      */\r
     public void setActualtime(java.lang.Integer actualtime) {\r
@@ -570,12 +488,8 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
         this._actualtime = actualtime;\r
     }\r
 \r
-    /** The column annotation for S2Dao. {VARCHAR(100)} */\r
-    public static final String assignedto_COLUMN = "AssignedTo";\r
-\r
     /**\r
-     * Get the value of the column 'AssignedTo'. <br />\r
-     * {VARCHAR(100)}\r
+     * AssignedTo: {VARCHAR(100)} <br />\r
      * @return The value of the column 'AssignedTo'. (Nullable)\r
      */\r
     public String getAssignedto() {\r
@@ -583,13 +497,11 @@ public abstract class BsTTasks implements Entity, java.io.Serializable {
     }\r
 \r
     /**\r
-     * Set the value of the column 'AssignedTo'. <br />\r
-     * {VARCHAR(100)}\r
+     * AssignedTo: {VARCHAR(100)} <br />\r
      * @param assignedto The value of the column 'AssignedTo'. (Nullable)\r
      */\r
     public void setAssignedto(String assignedto) {\r
         _modifiedProperties.addPropertyName("assignedto");\r
         this._assignedto = assignedto;\r
     }\r
-\r
 }\r