X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=ea2ddl-dao%2Fsrc%2Fmain%2Fjava%2Fjp%2Fsourceforge%2Fea2ddl%2Fdao%2Fbsentity%2FBsTXref.java;h=2823ef4824ba2de7d15b7cc1c3c7190b82b04acf;hb=38e8f077bc96f58670463549b885e032cd20c4f0;hp=9c0cd76ad5c5355b2a9710017b7da46d92ee3835;hpb=385f8b8ea05f8c98bfbad39baa47c98d6b7c1a81;p=ea2ddl%2Fea2ddl.git diff --git a/ea2ddl-dao/src/main/java/jp/sourceforge/ea2ddl/dao/bsentity/BsTXref.java b/ea2ddl-dao/src/main/java/jp/sourceforge/ea2ddl/dao/bsentity/BsTXref.java index 9c0cd76..2823ef4 100644 --- a/ea2ddl-dao/src/main/java/jp/sourceforge/ea2ddl/dao/bsentity/BsTXref.java +++ b/ea2ddl-dao/src/main/java/jp/sourceforge/ea2ddl/dao/bsentity/BsTXref.java @@ -1,13 +1,14 @@ package jp.sourceforge.ea2ddl.dao.bsentity; +import java.io.Serializable; import java.util.*; - -import jp.sourceforge.ea2ddl.dao.allcommon.Entity; -import jp.sourceforge.ea2ddl.dao.allcommon.dbmeta.DBMeta; -import jp.sourceforge.ea2ddl.dao.allcommon.dbmeta.DBMetaInstanceHandler; + +import org.seasar.dbflute.Entity; +import org.seasar.dbflute.dbmeta.DBMeta; +import jp.sourceforge.ea2ddl.dao.allcommon.DBMetaInstanceHandler; /** - * The entity of t_xref(TABLE). + * The entity of t_xref that the type is TABLE.
*
  * [primary-key]
  *     
@@ -37,9 +38,8 @@ import jp.sourceforge.ea2ddl.dao.allcommon.dbmeta.DBMetaInstanceHandler;
  *     
  * 
* @author DBFlute(AutoGenerator) - */ -@SuppressWarnings("unchecked") -public abstract class BsTXref implements Entity, java.io.Serializable { + */ +public abstract class BsTXref implements Entity, Serializable { // =================================================================================== // Definition @@ -47,53 +47,49 @@ public abstract class BsTXref implements Entity, java.io.Serializable { /** Serial version UID. (Default) */ private static final long serialVersionUID = 1L; - /** TABLE-Annotation for S2Dao. The value is t_xref. */ - public static final String TABLE = "t_xref"; - - // =================================================================================== // Attribute // ========= // ----------------------------------------------------- // Column // ------ - /** The attribute of the column 'XrefID'. {UQ : VARCHAR(255)} */ + /** XrefID: {UQ : VARCHAR(255)} */ protected String _xrefid; - /** The attribute of the column 'Name'. {VARCHAR(255)} */ + /** Name: {VARCHAR(255)} */ protected String _name; - /** The attribute of the column 'Type'. {VARCHAR(255)} */ + /** Type: {VARCHAR(255)} */ protected String _type; - /** The attribute of the column 'Visibility'. {VARCHAR(255)} */ + /** Visibility: {VARCHAR(255)} */ protected String _visibility; - /** The attribute of the column 'Namespace'. {VARCHAR(255)} */ + /** Namespace: {VARCHAR(255)} */ protected String _namespace; - /** The attribute of the column 'Requirement'. {VARCHAR(255)} */ + /** Requirement: {VARCHAR(255)} */ protected String _requirement; - /** The attribute of the column 'Constraint'. {VARCHAR(255)} */ + /** Constraint: {VARCHAR(255)} */ protected String _constraint; - /** The attribute of the column 'Behavior'. {VARCHAR(255)} */ + /** Behavior: {VARCHAR(255)} */ protected String _behavior; - /** The attribute of the column 'Partition'. {VARCHAR(255)} */ + /** Partition: {VARCHAR(255)} */ protected String _partition; - /** The attribute of the column 'Description'. {LONGCHAR(2147483647)} */ + /** Description: {LONGCHAR(2147483647)} */ protected String _description; - /** The attribute of the column 'Client'. {VARCHAR(255)} */ + /** Client: {VARCHAR(255)} */ protected String _client; - /** The attribute of the column 'Supplier'. {VARCHAR(255)} */ + /** Supplier: {VARCHAR(255)} */ protected String _supplier; - /** The attribute of the column 'Link'. {VARCHAR(255)} */ + /** Link: {VARCHAR(255)} */ protected String _link; // ----------------------------------------------------- @@ -103,19 +99,13 @@ public abstract class BsTXref implements Entity, java.io.Serializable { protected EntityModifiedProperties _modifiedProperties = newEntityModifiedProperties(); // =================================================================================== - // Constructor - // =========== - public BsTXref() { - } - - // =================================================================================== // Table Name // ========== public String getTableDbName() { return "t_xref"; } - public String getTablePropertyName() {// as JavaBeansRule + public String getTablePropertyName() { // as JavaBeansRule return "TXref"; } @@ -141,7 +131,6 @@ public abstract class BsTXref implements Entity, java.io.Serializable { // =================================================================================== // Referrer Property // ================= - // =================================================================================== // Determination // ============= @@ -249,13 +238,8 @@ public abstract class BsTXref implements Entity, java.io.Serializable { // =================================================================================== // Accessor // ======== - - /** The column annotation for S2Dao. {UQ : VARCHAR(255)} */ - public static final String xrefid_COLUMN = "XrefID"; - /** - * Get the value of the column 'XrefID'.
- * {UQ : VARCHAR(255)} + * XrefID: {UQ : VARCHAR(255)}
* @return The value of the column 'XrefID'. (Nullable) */ public String getXrefid() { @@ -263,8 +247,7 @@ public abstract class BsTXref implements Entity, java.io.Serializable { } /** - * Set the value of the column 'XrefID'.
- * {UQ : VARCHAR(255)} + * XrefID: {UQ : VARCHAR(255)}
* @param xrefid The value of the column 'XrefID'. (Nullable) */ public void setXrefid(String xrefid) { @@ -272,12 +255,8 @@ public abstract class BsTXref implements Entity, java.io.Serializable { this._xrefid = xrefid; } - /** The column annotation for S2Dao. {VARCHAR(255)} */ - public static final String name_COLUMN = "Name"; - /** - * Get the value of the column 'Name'.
- * {VARCHAR(255)} + * Name: {VARCHAR(255)}
* @return The value of the column 'Name'. (Nullable) */ public String getName() { @@ -285,8 +264,7 @@ public abstract class BsTXref implements Entity, java.io.Serializable { } /** - * Set the value of the column 'Name'.
- * {VARCHAR(255)} + * Name: {VARCHAR(255)}
* @param name The value of the column 'Name'. (Nullable) */ public void setName(String name) { @@ -294,12 +272,8 @@ public abstract class BsTXref implements Entity, java.io.Serializable { this._name = name; } - /** The column annotation for S2Dao. {VARCHAR(255)} */ - public static final String type_COLUMN = "Type"; - /** - * Get the value of the column 'Type'.
- * {VARCHAR(255)} + * Type: {VARCHAR(255)}
* @return The value of the column 'Type'. (Nullable) */ public String getType() { @@ -307,8 +281,7 @@ public abstract class BsTXref implements Entity, java.io.Serializable { } /** - * Set the value of the column 'Type'.
- * {VARCHAR(255)} + * Type: {VARCHAR(255)}
* @param type The value of the column 'Type'. (Nullable) */ public void setType(String type) { @@ -316,12 +289,8 @@ public abstract class BsTXref implements Entity, java.io.Serializable { this._type = type; } - /** The column annotation for S2Dao. {VARCHAR(255)} */ - public static final String visibility_COLUMN = "Visibility"; - /** - * Get the value of the column 'Visibility'.
- * {VARCHAR(255)} + * Visibility: {VARCHAR(255)}
* @return The value of the column 'Visibility'. (Nullable) */ public String getVisibility() { @@ -329,8 +298,7 @@ public abstract class BsTXref implements Entity, java.io.Serializable { } /** - * Set the value of the column 'Visibility'.
- * {VARCHAR(255)} + * Visibility: {VARCHAR(255)}
* @param visibility The value of the column 'Visibility'. (Nullable) */ public void setVisibility(String visibility) { @@ -338,12 +306,8 @@ public abstract class BsTXref implements Entity, java.io.Serializable { this._visibility = visibility; } - /** The column annotation for S2Dao. {VARCHAR(255)} */ - public static final String namespace_COLUMN = "Namespace"; - /** - * Get the value of the column 'Namespace'.
- * {VARCHAR(255)} + * Namespace: {VARCHAR(255)}
* @return The value of the column 'Namespace'. (Nullable) */ public String getNamespace() { @@ -351,8 +315,7 @@ public abstract class BsTXref implements Entity, java.io.Serializable { } /** - * Set the value of the column 'Namespace'.
- * {VARCHAR(255)} + * Namespace: {VARCHAR(255)}
* @param namespace The value of the column 'Namespace'. (Nullable) */ public void setNamespace(String namespace) { @@ -360,12 +323,8 @@ public abstract class BsTXref implements Entity, java.io.Serializable { this._namespace = namespace; } - /** The column annotation for S2Dao. {VARCHAR(255)} */ - public static final String requirement_COLUMN = "Requirement"; - /** - * Get the value of the column 'Requirement'.
- * {VARCHAR(255)} + * Requirement: {VARCHAR(255)}
* @return The value of the column 'Requirement'. (Nullable) */ public String getRequirement() { @@ -373,8 +332,7 @@ public abstract class BsTXref implements Entity, java.io.Serializable { } /** - * Set the value of the column 'Requirement'.
- * {VARCHAR(255)} + * Requirement: {VARCHAR(255)}
* @param requirement The value of the column 'Requirement'. (Nullable) */ public void setRequirement(String requirement) { @@ -382,12 +340,8 @@ public abstract class BsTXref implements Entity, java.io.Serializable { this._requirement = requirement; } - /** The column annotation for S2Dao. {VARCHAR(255)} */ - public static final String constraint_COLUMN = "Constraint"; - /** - * Get the value of the column 'Constraint'.
- * {VARCHAR(255)} + * Constraint: {VARCHAR(255)}
* @return The value of the column 'Constraint'. (Nullable) */ public String getConstraint() { @@ -395,8 +349,7 @@ public abstract class BsTXref implements Entity, java.io.Serializable { } /** - * Set the value of the column 'Constraint'.
- * {VARCHAR(255)} + * Constraint: {VARCHAR(255)}
* @param constraint The value of the column 'Constraint'. (Nullable) */ public void setConstraint(String constraint) { @@ -404,12 +357,8 @@ public abstract class BsTXref implements Entity, java.io.Serializable { this._constraint = constraint; } - /** The column annotation for S2Dao. {VARCHAR(255)} */ - public static final String behavior_COLUMN = "Behavior"; - /** - * Get the value of the column 'Behavior'.
- * {VARCHAR(255)} + * Behavior: {VARCHAR(255)}
* @return The value of the column 'Behavior'. (Nullable) */ public String getBehavior() { @@ -417,8 +366,7 @@ public abstract class BsTXref implements Entity, java.io.Serializable { } /** - * Set the value of the column 'Behavior'.
- * {VARCHAR(255)} + * Behavior: {VARCHAR(255)}
* @param behavior The value of the column 'Behavior'. (Nullable) */ public void setBehavior(String behavior) { @@ -426,12 +374,8 @@ public abstract class BsTXref implements Entity, java.io.Serializable { this._behavior = behavior; } - /** The column annotation for S2Dao. {VARCHAR(255)} */ - public static final String partition_COLUMN = "Partition"; - /** - * Get the value of the column 'Partition'.
- * {VARCHAR(255)} + * Partition: {VARCHAR(255)}
* @return The value of the column 'Partition'. (Nullable) */ public String getPartition() { @@ -439,8 +383,7 @@ public abstract class BsTXref implements Entity, java.io.Serializable { } /** - * Set the value of the column 'Partition'.
- * {VARCHAR(255)} + * Partition: {VARCHAR(255)}
* @param partition The value of the column 'Partition'. (Nullable) */ public void setPartition(String partition) { @@ -448,12 +391,8 @@ public abstract class BsTXref implements Entity, java.io.Serializable { this._partition = partition; } - /** The column annotation for S2Dao. {LONGCHAR(2147483647)} */ - public static final String description_COLUMN = "Description"; - /** - * Get the value of the column 'Description'.
- * {LONGCHAR(2147483647)} + * Description: {LONGCHAR(2147483647)}
* @return The value of the column 'Description'. (Nullable) */ public String getDescription() { @@ -461,8 +400,7 @@ public abstract class BsTXref implements Entity, java.io.Serializable { } /** - * Set the value of the column 'Description'.
- * {LONGCHAR(2147483647)} + * Description: {LONGCHAR(2147483647)}
* @param description The value of the column 'Description'. (Nullable) */ public void setDescription(String description) { @@ -470,12 +408,8 @@ public abstract class BsTXref implements Entity, java.io.Serializable { this._description = description; } - /** The column annotation for S2Dao. {VARCHAR(255)} */ - public static final String client_COLUMN = "Client"; - /** - * Get the value of the column 'Client'.
- * {VARCHAR(255)} + * Client: {VARCHAR(255)}
* @return The value of the column 'Client'. (Nullable) */ public String getClient() { @@ -483,8 +417,7 @@ public abstract class BsTXref implements Entity, java.io.Serializable { } /** - * Set the value of the column 'Client'.
- * {VARCHAR(255)} + * Client: {VARCHAR(255)}
* @param client The value of the column 'Client'. (Nullable) */ public void setClient(String client) { @@ -492,12 +425,8 @@ public abstract class BsTXref implements Entity, java.io.Serializable { this._client = client; } - /** The column annotation for S2Dao. {VARCHAR(255)} */ - public static final String supplier_COLUMN = "Supplier"; - /** - * Get the value of the column 'Supplier'.
- * {VARCHAR(255)} + * Supplier: {VARCHAR(255)}
* @return The value of the column 'Supplier'. (Nullable) */ public String getSupplier() { @@ -505,8 +434,7 @@ public abstract class BsTXref implements Entity, java.io.Serializable { } /** - * Set the value of the column 'Supplier'.
- * {VARCHAR(255)} + * Supplier: {VARCHAR(255)}
* @param supplier The value of the column 'Supplier'. (Nullable) */ public void setSupplier(String supplier) { @@ -514,12 +442,8 @@ public abstract class BsTXref implements Entity, java.io.Serializable { this._supplier = supplier; } - /** The column annotation for S2Dao. {VARCHAR(255)} */ - public static final String link_COLUMN = "Link"; - /** - * Get the value of the column 'Link'.
- * {VARCHAR(255)} + * Link: {VARCHAR(255)}
* @return The value of the column 'Link'. (Nullable) */ public String getLink() { @@ -527,13 +451,11 @@ public abstract class BsTXref implements Entity, java.io.Serializable { } /** - * Set the value of the column 'Link'.
- * {VARCHAR(255)} + * Link: {VARCHAR(255)}
* @param link The value of the column 'Link'. (Nullable) */ public void setLink(String link) { _modifiedProperties.addPropertyName("link"); this._link = link; } - }