You are viewing a plain text version of this content. The canonical link for it is here.
Posted to torque-dev@db.apache.org by tf...@apache.org on 2012/10/26 21:38:27 UTC

svn commit: r1402629 - /db/torque/torque4/trunk/torque-templates/src/main/java/org/apache/torque/templates/transformer/sql/SqlAttributeName.java

Author: tfischer
Date: Fri Oct 26 19:38:27 2012
New Revision: 1402629

URL: http://svn.apache.org/viewvc?rev=1402629&view=rev
Log:
add javadoc

Modified:
    db/torque/torque4/trunk/torque-templates/src/main/java/org/apache/torque/templates/transformer/sql/SqlAttributeName.java

Modified: db/torque/torque4/trunk/torque-templates/src/main/java/org/apache/torque/templates/transformer/sql/SqlAttributeName.java
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-templates/src/main/java/org/apache/torque/templates/transformer/sql/SqlAttributeName.java?rev=1402629&r1=1402628&r2=1402629&view=diff
==============================================================================
--- db/torque/torque4/trunk/torque-templates/src/main/java/org/apache/torque/templates/transformer/sql/SqlAttributeName.java (original)
+++ db/torque/torque4/trunk/torque-templates/src/main/java/org/apache/torque/templates/transformer/sql/SqlAttributeName.java Fri Oct 26 19:38:27 2012
@@ -33,20 +33,44 @@ public enum SqlAttributeName implements 
     PRIMARY_KEY_COLUMN_NAMES("primaryKeyColumnNames"),
 
     /**
-     * The attribute contains all unique columns in a comma-separated String.
+     * The attribute contains all unique column names
+     * in a comma-separated String.
      */
     UNIQUE_COLUMN_NAMES("uniqueColumnNames"),
 
+    /**
+     * The attribute contains all index column names
+     * in a comma-separated String.
+     */
     INDEX_COLUMN_NAMES("indexColumnNames"),
 
+    /**
+     * The attribute contains all local column names
+     * in a comma-separated String.
+     */
     LOCAL_COLUMN_NAMES("localColumnNames"),
 
+    /**
+     * The attribute contains all foreign column names
+     * in a comma-separated String.
+     */
     FOREIGN_COLUMN_NAMES("foreignColumnNames"),
 
+    /**
+     * The attribute contains the name of the constraint defining the
+     * primary key of a table.
+     */
     PRIMARY_KEY_CONSTRAINT_NAME("primaryKeyConstraintName"),
 
+    /**
+     * The attribute contains the name of the sequence from which
+     * the primary key of the table is generated.
+     */
     SEQUENCE_NAME("sequenceName"),
 
+    /**
+     * The attribute contains the SQL to define the column.
+     */
     DDL_SQL("ddlSql");
 
     /** The name of the source element attribute, not null. */



---------------------------------------------------------------------
To unsubscribe, e-mail: torque-dev-unsubscribe@db.apache.org
For additional commands, e-mail: torque-dev-help@db.apache.org