You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by jb...@apache.org on 2005/03/04 04:56:42 UTC

svn commit: r156129 - incubator/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/TableElementList.java

Author: jboynes
Date: Thu Mar  3 19:56:39 2005
New Revision: 156129

URL: http://svn.apache.org/viewcvs?view=rev&rev=156129
Log:
cosmetic, cleanup javadoc tags

Modified:
    incubator/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/TableElementList.java

Modified: incubator/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/TableElementList.java
URL: http://svn.apache.org/viewcvs/incubator/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/TableElementList.java?view=diff&r1=156128&r2=156129
==============================================================================
--- incubator/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/TableElementList.java (original)
+++ incubator/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/TableElementList.java Thu Mar  3 19:56:39 2005
@@ -69,8 +69,6 @@
 	 * Add a TableElementNode to this TableElementList
 	 *
 	 * @param tableElement	The TableElementNode to add to this list
-	 *
-	 * @return	Nothing
 	 */
 
 	public void addTableElement(TableElementNode tableElement)
@@ -117,8 +115,6 @@
 	 * @param dd		DataDictionary to use
 	 * @param td		TableDescriptor for table, if existing table.
 	 *
-	 * @return	None
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	void validate(DDLStatementNode ddlStmt,
@@ -418,8 +414,6 @@
 	 *
 	 * @param table		The table in question.
 	 *
-	 * @return Nothing.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void appendNewColumnsToRCL(FromBaseTable table)
@@ -460,9 +454,7 @@
 	 * Bind and validate all of the check constraints in this list against
 	 * the specified FromList.  
 	 *
-	 * @param FromList		The FromList in question.
-	 *
-	 * @return Nothing.
+	 * @param fromList		The FromList in question.
 	 *
 	 * @exception StandardException		Thrown on error
 	 */
@@ -588,10 +580,8 @@
 	 * 
 	 * @param conActions	The ConstraintConstantAction[] to be filled in.
 	 * @param tableName		The name of the Table being created.
-	 * @param sd			The schema for that table.
-	 * @param dd		The DataDictionary
-	 *
-	 * @return Nothing.
+	 * @param tableSd		The schema for that table.
+	 * @param dd	    	The DataDictionary
 	 *
 	 * @exception StandardException		Thrown on failure
 	 */
@@ -607,7 +597,6 @@
 		for (int index = 0; index < size; index++)
 		{
 			String[]	columnNames = null;
-			String		generatedConstraintName;
 			TableElementNode ten = (TableElementNode) elementAt(index);
 			IndexConstantAction indexAction = null;
 
@@ -711,7 +700,6 @@
 
       //check if one array is same as another 
 	private boolean columnsMatch(String[] columnNames1, String[] columnNames2)
-		throws StandardException
 	{
 		int srcCount, srcSize, destCount,destSize;
 		boolean match = true;
@@ -794,8 +782,6 @@
 	 * @param ht		Hashtable for enforcing uniqueness.
 	 * @param colName	Column name to check for.
 	 *
-	 * @return	None
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	private void checkForDuplicateColumns(DDLStatementNode ddlStmt,
@@ -822,12 +808,6 @@
 	 * RESOLVE: This check will also be performed by alter table.
 	 *
 	 * @param ddlStmt	DDLStatementNode which contains this list
-	 * @param outer		The element to check against.  Only check
-	 *						TableElements that come after this one, since this
-	 *						one has been checked against the TableElements
-	 *						before it.
-	 *
-	 * @return	None
 	 *
 	 * @exception StandardException		Thrown on error
 	 */
@@ -859,8 +839,6 @@
 	 * @param ddlStmt	The outer DDLStatementNode
 	 * @param cdn		The ConstraintDefinitionNode
 	 *
-	 * @return Nothing.
-	 *
 	 * @exception	StandardException	Thrown if the column list is invalid
 	 */
 	private void verifyUniqueColumnList(DDLStatementNode ddlStmt,
@@ -899,8 +877,6 @@
 	 *
 	 * @param cdn		The ConstraintDefinitionNode
 	 * @param td		TableDescriptor for the table
-	 *
-	 * @return Nothing.
 	 */
 	private void setColumnListToNotNull(ConstraintDefinitionNode cdn, TableDescriptor td)
 		throws StandardException
@@ -930,8 +906,6 @@
 	 * a create table statement to NOT NULL (but only in Cloudscape mode).
 	 *
 	 * @param colName	The column name
-	 *
-	 * @return Nothing.
 	 */
 	private void setColumnToNotNull(String colName) throws StandardException
 	{