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 da...@apache.org on 2006/02/01 23:48:11 UTC

svn commit: r374198 [4/7] - in /db/derby/code/trunk/java: client/org/apache/derby/client/net/ drda/org/apache/derby/impl/drda/ engine/org/apache/derby/catalog/ engine/org/apache/derby/catalog/types/ engine/org/apache/derby/database/ engine/org/apache/d...

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/BinaryOperatorNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/BinaryOperatorNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/BinaryOperatorNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/BinaryOperatorNode.java Wed Feb  1 14:46:09 2006
@@ -206,8 +206,6 @@
 	 * Set the operator.
 	 *
 	 * @param operator	The operator.
-	 *
-	 * @return Nothing.
 	 */
 	void setOperator(String operator)
 	{
@@ -219,8 +217,6 @@
 	 * Set the methodName.
 	 *
 	 * @param methodName	The methodName.
-	 *
-	 * @return Nothing.
 	 */
 	void setMethodName(String methodName)
 	{
@@ -232,8 +228,6 @@
 	 * Set the interface type for the left and right arguments.
 	 * Used when we don't know the interface type until
 	 * later in binding.
-	 *
-	 * @return void
 	 */
 	public void setLeftRightInterfaceType(String iType)
 	{
@@ -246,8 +240,6 @@
 	 * Set the clause that this node appears in.
 	 *
 	 * @param clause	The clause that this node appears in.
-	 *
-	 * @return Nothing.
 	 */
 	public void setClause(int clause)
 	{
@@ -261,8 +253,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -629,8 +619,6 @@
 	 * Set the leftOperand to the specified ValueNode
 	 *
 	 * @param newLeftOperand	The new leftOperand
-	 *
-	 * @return None.
 	 */
 	public void setLeftOperand(ValueNode newLeftOperand)
 	{
@@ -651,8 +639,6 @@
 	 * Set the rightOperand to the specified ValueNode
 	 *
 	 * @param newRightOperand	The new rightOperand
-	 *
-	 * @return None.
 	 */
 	public void setRightOperand(ValueNode newRightOperand)
 	{
@@ -778,8 +764,6 @@
 
 	/**
 	 * Swap the left and right sides.
-	 *
-	 * @return Nothing.
 	 */
 	void swapOperands()
 	{

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/BitConstantNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/BitConstantNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/BitConstantNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/BitConstantNode.java Wed Feb  1 14:46:09 2006
@@ -46,11 +46,7 @@
 	/**
 	 * Initializer for a BitConstantNode.
 	 *
-	 * @param arg1	A Bit containing the value of the constant
-	 *
-	 * - OR -
-	 *
-	 * @param arg1	The TypeId for the type of the node
+	 * @param arg1	A Bit containing the value of the constant OR The TypeId for the type of the node
 	 *
 	 * @exception StandardException
 	 */
@@ -91,8 +87,6 @@
 	/**
 	 * Initializer for non-numeric types.  Needed for our subclasses
 	 *
-	 * @param typeCompilationFactory	The factory to get the
-	 *									DataTypeServicesFactory from
 	 * @param typeId	The Type ID of the datatype
 	 * @param nullable	True means the constant is nullable
 	 * @param maximumWidth	The maximum number of bytes in the data value
@@ -138,9 +132,6 @@
 	 *
 	 * @param acb	The ExpressionClassBuilder for the class being built
 	 * @param mb	The method the code to place the code
-	 *
-	 * @return		The compiled Expression, 
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	void generateConstant(ExpressionClassBuilder acb, MethodBuilder mb)

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/BooleanConstantNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/BooleanConstantNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/BooleanConstantNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/BooleanConstantNode.java Wed Feb  1 14:46:09 2006
@@ -46,13 +46,7 @@
 	/**
 	 * Initializer for a BooleanConstantNode.
 	 *
-	 * @param arg1	A boolean containing the value of the constant
-	 * @param arg1	The factory to get the TypeId
-	 *			and DataTypeServices factories from.
-	 *
-	 * - OR -
-	 *
-	 * @param arg1	The TypeId for the type of the node
+	 * @param arg1	A boolean containing the value of the constant OR The TypeId for the type of the node
 	 *
 	 * @exception StandardException
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CallStatementNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CallStatementNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CallStatementNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CallStatementNode.java Wed Feb  1 14:46:09 2006
@@ -122,8 +122,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -216,8 +214,6 @@
 	 *
 	 * @param acb	The ActivationClassBuilder for the class being built
 	 * @param mb	The method for the execute() method to be built
-	 *
-	 * @return		A compiled Expression returning a ResultSet for the call statement.
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CastNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CastNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CastNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CastNode.java Wed Feb  1 14:46:09 2006
@@ -168,8 +168,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -194,8 +192,6 @@
 	 * Set the clause that this node appears in.
 	 *
 	 * @param clause	The clause that this node appears in.
-	 *
-	 * @return Nothing.
 	 */
 	public void setClause(int clause)
 	{
@@ -369,8 +365,6 @@
 	 * This is useful for when we generate a CastNode during binding
 	 * after having already bound the child.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void bindCastNodeOnly()
@@ -646,7 +640,7 @@
 	 *			non-integral type	 non-decimal numeric
 	 *			non-integral type	 char
 	 *
-	 * @param doubleValue		non-integral type a a double to cast from
+	 * @param constantValue		non-integral type a a double to cast from
 	 * @param destJDBCTypeId	The destination JDBC TypeId
 	 *
 	 * @return The new top of the tree (this CastNode or a new Constant)
@@ -810,8 +804,6 @@
 	 * By default unary operators don't accept ? parameters as operands.
 	 * This can be over-ridden for particular unary operators.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Always thrown to indicate a
 	 *									? parameter where it isn't allowed.
 	 */
@@ -862,8 +854,6 @@
 	 *
 	 * @param acb	The ExpressionClassBuilder for the class we're generating
 	 * @param mb	The method the code to place the code
-	 *
-	 * @return	An expression to evaluate this operator
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CharConstantNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CharConstantNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CharConstantNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CharConstantNode.java Wed Feb  1 14:46:09 2006
@@ -40,13 +40,7 @@
 	/**
 	 * Initializer for a CharConstantNode.
 	 *
-	 * @param arg1	A String containing the value of the constant
-	 * @param arg2	The factory to get the TypeId
-	 *			and DataTypeServices factories from.
-	 *
-	 * - OR *
-	 *
-	 * @param arg1	The TypeId for the type of the node
+	 * @param arg1	A String containing the value of the constant OR The TypeId for the type of the node
 	 *
 	 * @exception StandardException
 	 */
@@ -81,8 +75,6 @@
 	 *
 	 * @param newValue	A String containing the value of the constant
 	 * @param newLength The length of the new value of the constant
-	 * @param typeCompilationFactory	The factory to get the TypeId
-	 *			and DataTypeServices factories from.
 	 *
 	 * @exception StandardException
 	 */
@@ -162,8 +154,6 @@
 	 *
 	 * @param acb	The ExpressionClassBuilder for the class being built
 	 * @param mb	The method the code to place the code
-	 *
-	 * @return		The compiled Expression, 
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ColumnDefinitionNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ColumnDefinitionNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ColumnDefinitionNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ColumnDefinitionNode.java Wed Feb  1 14:46:09 2006
@@ -324,8 +324,6 @@
 	 * definition describes a user type that either doesn't exist or is
 	 * inaccessible, or that doesn't implement Serializable.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -401,8 +399,6 @@
 	 * @param dd		The DataDictionary.
 	 * @param td		The TableDescriptor.
 	 *
-	 * @return Nothing.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	void bindAndValidateDefault(DataDictionary dd, TableDescriptor td)
@@ -517,8 +513,6 @@
 	 * Check the validity of the default for this node.
 	 *
 	 * @param td		The TableDescriptor.
-	 *
-	 * @return Nothing.
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ColumnReference.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ColumnReference.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ColumnReference.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ColumnReference.java Wed Feb  1 14:46:09 2006
@@ -151,8 +151,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -191,8 +189,6 @@
 	 * at which the CR appears.)
 	 *
 	 * @param nestingLevel	The Nesting level at which the CR appears.
-	 *
-	 * @return Nothing.
 	 */
 	void setNestingLevel(int nestingLevel)
 	{
@@ -219,8 +215,6 @@
 	 * of the source of the CR.)
 	 *
 	 * @param sourceLevel	The Nesting level of the source of the CR.
-	 *
-	 * @return Nothing.
 	 */
 	void setSourceLevel(int sourceLevel)
 	{
@@ -247,8 +241,6 @@
 	 * (Useful for replacing aggregates in the HAVING clause with 
 	 * column references to the matching aggregate in the 
 	 * user's SELECT.
-	 *
-	 * @return Nothing.
 	 */
 	public void markGeneratedToReplaceAggregate()
 	{
@@ -389,9 +381,7 @@
 	/**
 	 * Set the name of this column
 	 *
-	 * @param columName	The name of this column
-	 *
-	 * @return None.
+	 * @param columnName	The name of this column
 	 */
 
 	public void setColumnName(String columnName)
@@ -413,9 +403,7 @@
 	/**
 	 * Set this ColumnReference to refer to the given table number.
 	 *
-	 * @param table	The table number this ColumnReference will refer to
-	 *
-	 * @return	Nothing
+	 * @param tableNumber	The table number this ColumnReference will refer to
 	 */
 
 	public void setTableNumber(int tableNumber)
@@ -525,8 +513,6 @@
 	 * Set the source this columnReference
 	 *
 	 * @param source	The source of this columnReference
-	 *
-	 * @return None.
 	 */
 
 	public void setSource(ResultColumn source)
@@ -625,8 +611,6 @@
 	 *
 	 * RESOLVE: Once we start pushing join clauses, we will need to walk the
 	 * ResultColumn/VirtualColumnNode chain for them to remap the references.
-	 *
-	 * @return None.
 	 */
 	public void remapColumnReferences()
 	{
@@ -825,8 +809,6 @@
 	 * of this CR.
 	 *
 	 * @param refs	The table map.
-	 *
-	 * @return Nothing.
 	 */
 	void getTablesReferenced(JBitSet refs)
 	{

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CompilerContextImpl.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CompilerContextImpl.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CompilerContextImpl.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CompilerContextImpl.java Wed Feb  1 14:46:09 2006
@@ -274,9 +274,7 @@
 	/**
 	 * Set the current auxiliary provider list for this CompilerContext.
 	 *
-	 * @param adl	The new current AuxiliaryProviderList.
-	 *
-	 * @return Nothing.
+	 * @param apl	The new current AuxiliaryProviderList.
 	 */
 
 	public void setCurrentAuxiliaryProviderList(ProviderList apl)
@@ -316,9 +314,6 @@
 	 * Add a Provider to the current AuxiliaryProviderList, if one exists.
 	 *
 	 * @param p		The Provider to add.
-	 *
-	 * @return Nothing.
-	 *
 	 */
 	private void addProviderToAuxiliaryList(Provider p)
 	{
@@ -387,9 +382,6 @@
 	 * Set the in use state for the compiler context.
 	 *
 	 * @param inUse	 The new inUse state for the compiler context.
-	 *
-	 * @return Nothing.
-	 *
 	 */
 	public void setInUse(boolean inUse)
 	{
@@ -542,7 +534,7 @@
 	/**
 	 * Set the compilation schema descriptor for this compilation context.
 	 *
-	 * @param the compilation schema
+	 * @param newDefault	the compilation schema
 	 * 
 	 * @return the previous compilation schema descirptor
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ConditionalNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ConditionalNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ConditionalNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ConditionalNode.java Wed Feb  1 14:46:09 2006
@@ -91,8 +91,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -119,8 +117,6 @@
 	 * Set the clause that this node appears in.
 	 *
 	 * @param clause	The clause that this node appears in.
-	 *
-	 * @return Nothing.
 	 */
 	public void setClause(int clause)
 	{
@@ -441,8 +437,6 @@
 	 *
 	 * @param acb	The ExpressionClassBuilder for the class we're generating
 	 * @param mb	The method the expression will go into
-	 *
-	 * @return	An expression to evaluate this operator
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ConstantNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ConstantNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ConstantNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ConstantNode.java Wed Feb  1 14:46:09 2006
@@ -77,8 +77,6 @@
 	/**
 	 * Initializer for non-numeric types
 	 *
-	 * @param typeCompilationFactory	The factory to get the
-	 *									DataTypeServicesFactory from
 	 * @param typeId	The Type ID of the datatype
 	 * @param nullable	True means the constant is nullable
 	 * @param maximumWidth	The maximum number of bytes in the data value
@@ -218,9 +216,6 @@
 	 * @param acb	The ExpressionClassBuilder for the class being built
 	 * @param mb	The method the code to place the code
 	 *
-	 * @return		The compiled Expression, if the constant is a null value,
-	 *				null if the constant is not a null value (confusing, huh?)
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void generateExpression
@@ -249,8 +244,6 @@
 	 *
 	 * @param acb	The ExpressionClassBuilder for the class being built
 	 * @param mb	The method the code to place the code
-	 *
-	 * @return		The compiled Expression, 
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ConstraintDefinitionNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ConstraintDefinitionNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ConstraintDefinitionNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ConstraintDefinitionNode.java Wed Feb  1 14:46:09 2006
@@ -252,8 +252,6 @@
 	 * Set the auxiliary provider list.
 	 *
 	 * @param apl	The new auxiliary provider list.
-	 *
-	 * @return Nothing.
 	 */
 	void setAuxiliaryProviderList(ProviderList apl)
 	{
@@ -369,8 +367,6 @@
 	 * Set the optional properties for the backing index to this constraint.
 	 *
 	 * @param properties	The optional Properties for this constraint.
-	 *
-	 * @return Nothing.
 	 */
 	public void setProperties(Properties properties)
 	{
@@ -434,8 +430,6 @@
 	 * where the list of referenced columns is built at bind time.
 	 *
 	 * @param columnList	The new columnList.
-	 *
-	 * @return	Nothing.
 	 */
 	public void setColumnList(ResultColumnList columnList)
 	{
@@ -456,8 +450,6 @@
 	 * Set the check condition for this table constraint.
 	 *
 	 * @param checkCondition	The check condition
-	 *
-	 * @return Nothing.
 	 */
 	public void setCheckCondition(ValueNode checkCondition)
 	{
@@ -489,8 +481,6 @@
 	 *
 	 * @param checkColumnReferences	The array of 1-based column references
 	 *								for the check constraint.
-	 *
-	 * @return Nothing.
 	 */
 	public void setCheckColumnReferences(int[] checkColumnReferences)
 	{

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CountAggregateDefinition.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CountAggregateDefinition.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CountAggregateDefinition.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CountAggregateDefinition.java Wed Feb  1 14:46:09 2006
@@ -49,8 +49,7 @@
 	 * count() on anything, and it always returns a
 	 * INTEGER (java.lang.Integer).
 	 *
-	 * @param the input type, either a user type or a java.lang object
-	 * @param implementsInterface	the interface it implements
+	 * @param inputType the input type, either a user type or a java.lang object
 	 *
 	 * @return the output Class (null if cannot operate on
 	 *	value expression of this type.

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateIndexNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateIndexNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateIndexNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateIndexNode.java Wed Feb  1 14:46:09 2006
@@ -326,8 +326,6 @@
 	/**
 	 * Check the uniqueness of the column names within the derived column list.
 	 *
-	 * @return None.
-	 *
 	 * @exception StandardException	Thrown if column list contains a
 	 *											duplicate name.
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateTableNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateTableNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateTableNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateTableNode.java Wed Feb  1 14:46:09 2006
@@ -61,7 +61,7 @@
 	/**
 	 * Initializer for a CreateTableNode for a base table
 	 *
-	 * @param objectName		The name of the new object being created (ie base table)
+	 * @param newObjectName		The name of the new object being created (ie base table)
 	 * @param tableElementList	The elements of the table: columns,
 	 *				constraints, etc.
 	 * @param properties		The optional list of properties associated with
@@ -100,7 +100,7 @@
 	/**
 	 * Initializer for a CreateTableNode for a global temporary table
 	 *
-	 * @param objectName		The name of the new object being declared (ie temporary table)
+	 * @param newObjectName		The name of the new object being declared (ie temporary table)
 	 * @param tableElementList	The elements of the table: columns,
 	 *				constraints, etc.
 	 * @param properties		The optional list of properties associated with

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateTriggerNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateTriggerNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateTriggerNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateTriggerNode.java Wed Feb  1 14:46:09 2006
@@ -126,8 +126,6 @@
 	 * @param actionText			the text of the trigger action
 	 * @param actionOffset			offset of start of action clause
 	 *
-	 * @return	A CreateTriggerNode 
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void init 
@@ -179,8 +177,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateViewNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateViewNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateViewNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CreateViewNode.java Wed Feb  1 14:46:09 2006
@@ -130,8 +130,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -338,8 +336,6 @@
 	 * Fill in the ColumnInfo[] for this create view.
 	 * 
 	 * @param colInfos	The ColumnInfo[] to be filled in.
-	 *
-	 * @return Nothing.
 	 */
 	private void genColumnInfos(ColumnInfo[] colInfos)
 	{

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CurrentDatetimeOperatorNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CurrentDatetimeOperatorNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CurrentDatetimeOperatorNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CurrentDatetimeOperatorNode.java Wed Feb  1 14:46:09 2006
@@ -137,8 +137,6 @@
 	 * @param acb	The ExpressionClassBuilder for the class being built
 	 * @param mb	The method the code to place the code
 	 *
-	 * @return		The compiled Expression
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void generateExpression(ExpressionClassBuilder acb,

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CurrentOfNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CurrentOfNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CurrentOfNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CurrentOfNode.java Wed Feb  1 14:46:09 2006
@@ -271,9 +271,6 @@
 	 * each expression.
 	 *
 	 * @param fromListParam		FromList to use/append to.
-	 *
-	 * @return	Nothing
-	 *
 	 */
 	public void bindExpressions(FromList fromListParam)
 	{
@@ -411,9 +408,6 @@
 	 * Optimize this CurrentOfNode.  Nothing to do.
 	 *
 	 * @param dataDictionary	The DataDictionary to use for optimization
-	 * @param predicate		The predicate to optimize.  This should
-	 *				be a single-table predicate with the table
-	 *				the same as the table in this FromTable.
 	 * @param predicateList		The PredicateList to optimize.  This should
 	 *				be a single-table predicate with the table
 	 *				the same as the table in this FromTable.
@@ -456,9 +450,6 @@
 	 *
 	 * @param acb	The ActivationClassBuilder for the class being built
 	 * @param mb	The execute() method to be built
-	 *
-	 * @return		A compiled Expression that returns a ResultSet that
-	 *				scans the table.
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CursorNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CursorNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CursorNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CursorNode.java Wed Feb  1 14:46:09 2006
@@ -189,8 +189,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -731,7 +729,6 @@
 		REVISIT: If the list is empty, should it expand it out? at present,
 		it leaves it empty.
 	
-		@param dataDictionary	The DataDictionary to use for binding
 		@param targetTable	The underlying target table 
 	
 		@exception StandardException		Thrown on error

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DDLStatementNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DDLStatementNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DDLStatementNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DDLStatementNode.java Wed Feb  1 14:46:09 2006
@@ -164,8 +164,6 @@
 	 * @param acb	The ActivationClassBuilder for the class being built
 	 * @param mb	The execute() method to be built
 	 *
-	 * @return		A compiled expression returning the RepCreatePublicationResultSet
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -249,8 +247,6 @@
 	 * Validate that the table is ok for DDL -- e.g.
 	 * that it exists, it is not a view, and is not
 	 * a system table, and that its schema is ok.
-	 *
-	 * @param tableDescriptor td
 	 *
 	 * @return the validated table descriptor, never null
 	 *

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DMLModStatementNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DMLModStatementNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DMLModStatementNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DMLModStatementNode.java Wed Feb  1 14:46:09 2006
@@ -514,11 +514,9 @@
 	 *
 	 * @param nodeFactory			Where to get query tree nodes.
 	 * @param targetTableDescriptor	The TableDescriptor for the constrained table.
-	 * @param resultColumnList		Result columns.
+	 * @param sourceRCL		Result columns.
 	 * @param checkConstraint		Parsed query tree for check constraint
 	 *
-	 * @return	The bound check constraint tree.
-	 *
 	 * @exception StandardException		Thrown on failure
 	 */
 	public	void	bindCheckConstraint
@@ -878,7 +876,7 @@
 	/**
 	 * Generate the TriggerInfo structures used during code generation.
 	 *
-	 * @param tdl				The trigger descriptor list
+	 * @param triggerList				The trigger descriptor list
 	 * @param td				The TableDescriptor
 	 * @param changedCols		The columns that are being modified
 	 *
@@ -1240,10 +1238,7 @@
 	  *	Generate the code to evaluate a tree of CHECK CONSTRAINTS.
 	  *
 	  *	@param	checkConstraints	Bound query tree of ANDed check constraints.
-	  *	@param	generatedMethodName	Name to give the generated method. If null, we will
-	  *								generate a unique name.
 	  *	@param	ecb					Expression Class Builder
-	  *	@param	executeEB			Statement block of generated execute() method.
 	  *
 	  *
 	  *

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DMLStatementNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DMLStatementNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DMLStatementNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DMLStatementNode.java Wed Feb  1 14:46:09 2006
@@ -104,8 +104,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -196,8 +194,6 @@
 	 *
 	 * @param dataDictionary	The data dictionary to use to look up the tables
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -228,8 +224,6 @@
 	/**
 	 * Bind the expressions in this DML statement.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -254,9 +248,6 @@
 	/**
 	 * Bind the expressions in the underlying ResultSets with tables.
 	 *
-	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -381,8 +372,6 @@
 	 * the values being inserted are of a different type or length
 	 * than the columns in the base table.
 	 *
-	 * @param name	The name of the cursor, if any
-	 *
 	 * @return	A ResultDescription for this DML statement
 	 */
 
@@ -403,8 +392,6 @@
 	 * all the parameters being set.
 	 * 
 	 * @param acb	The ActivationClassBuilder for the class we're building
-	 *
-	 * @return	Nothing
 	 */
 
 	void generateParameterValueSet(ActivationClassBuilder acb)

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DeleteNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DeleteNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DeleteNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DeleteNode.java Wed Feb  1 14:46:09 2006
@@ -110,7 +110,7 @@
 	 * Initializer for a DeleteNode.
 	 *
 	 * @param targetTableName	The name of the table to delete from
-	 * @param queryExpresssion	The query expression that will generate
+	 * @param queryExpression	The query expression that will generate
 	 *				the rows to delete from the given table
 	 */
 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DistinctNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DistinctNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DistinctNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DistinctNode.java Wed Feb  1 14:46:09 2006
@@ -227,7 +227,7 @@
 	 * Optimize this DistinctNode.  
 	 *
 	 * @param dataDictionary	The DataDictionary to use for optimization
-	 * @param predicateList		The PredicateList to optimize.  This should
+	 * @param predicates		The PredicateList to optimize.  This should
 	 *							be a join predicate.
 	 * @param outerRows			The number of outer joining rows
 	 *

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DropTableNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DropTableNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DropTableNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DropTableNode.java Wed Feb  1 14:46:09 2006
@@ -59,7 +59,7 @@
 	/**
 	 * Intializer for a DropTableNode
 	 *
-	 * @param objectName	The name of the object being dropped
+	 * @param dropObjectName	The name of the object being dropped
 	 * @param dropBehavior		Drop behavior (RESTRICT | CASCADE)
 	 *
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DropViewNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DropViewNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DropViewNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/DropViewNode.java Wed Feb  1 14:46:09 2006
@@ -47,7 +47,7 @@
 	/**
 	 * Initializer for a DropViewNode
 	 *
-	 * @param objectName	The name of the object being dropped
+	 * @param dropObjectName	The name of the object being dropped
 	 *
 	 */
 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ExpressionClassBuilder.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ExpressionClassBuilder.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ExpressionClassBuilder.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ExpressionClassBuilder.java Wed Feb  1 14:46:09 2006
@@ -261,7 +261,6 @@
 	 * at the end of it.
 	 *
 	 * @exception StandardException thrown on failure
-	 * @return	Nothing
 	 */
 
 	void finishConstructor()
@@ -293,8 +292,6 @@
 	 * Generate the assignment for row = new ExecRow[numResultSets]
 	 *
 	 * @param numResultSets	The size of the array.
-	 *
-	 * @return Nothing.
 	 */
 	private void addNewArrayOfRows(int numResultSets)
 	{
@@ -369,8 +366,6 @@
 	 * function names in the activation class. If you pass in a function
 	 * name, think carefully about whether it will collide with other names.
 	 *
-	 * @param exprName	Name of function. Usually null, which causes us to
-	 *					generate a unique name.
 	 * @param returnType the return type of the function
 	 * @param modifiers the modifiers on the function
 	 *
@@ -472,10 +467,6 @@
 	 * (because we don't want random exceptions thrown from user methods to
 	 * propagate to the rest of the system.
 	 *
-	 * @param functionName	Name to give to the function. If null, we'll generate a
-	 *						unique name.
-	 * @param returnType	A String telling the return type from the expression
-	 *
 	 * @return	A new MethodBuilder
 	 */
 	MethodBuilder newUserExprFun() {
@@ -592,7 +583,6 @@
 	 * Add a column to the existing Ordering list.  Takes
 	 * a column id and only adds it if it isn't in the list.
 	 *
-	 * @param columNum	the column to add
 	 *
 	 * @return the ColumnOrdering array
 	 */
@@ -764,11 +754,8 @@
 	/**
 	 * Generate a reference to a colunm in a result set.
 	 * 
-	 * @param eb the expression block
 	 * @param rsNumber the result set number
 	 * @param colId the column number
-	 *
-	 * @return expression
 	 */
 	void pushColumnReference(MethodBuilder mb, int rsNumber, int colId)
 	{
@@ -789,9 +776,6 @@
 	 * Generate a reference to the parameter value
 	 * set that all activations use.
 	 * 
-	 * @param eb the expression block
-	 *
-	 * @return expression
 	 */
 	void pushPVSReference(MethodBuilder mb)
 	{

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FKConstraintDefinitionNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FKConstraintDefinitionNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FKConstraintDefinitionNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FKConstraintDefinitionNode.java Wed Feb  1 14:46:09 2006
@@ -74,7 +74,7 @@
 	 * Bind this constraint definition.  Figure out some
 	 * information about the table we are binding against.
 	 *
-	 * @param DataDictionary the dd
+	 * @param dd DataDictionary
 	 * 
 	 * @exception StandardException on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromBaseTable.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromBaseTable.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromBaseTable.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromBaseTable.java Wed Feb  1 14:46:09 2006
@@ -205,19 +205,25 @@
 	private boolean getUpdateLocks;
 
 	/**
-	 * Initializer for a table in a FROM list.
+	 * Initializer for a table in a FROM list. Parameters are as follows:
 	 *
-	 * @param tableName			The name of the table
-	 * @param correlationName	The correlation name
-	 * @param derivedRCL		The derived column list
-	 * @param tableProperties	The Properties list associated with the table.
+	 * <ul>
+	 * <li>tableName			The name of the table</li>
+	 * <li>correlationName	The correlation name</li>
+	 * <li>derivedRCL		The derived column list</li>
+	 * <li>tableProperties	The Properties list associated with the table.</li>
+	 * </ul>
 	 *
+	 * <p>
 	 *  - OR -
+	 * </p>
 	 *
-	 * @param tableName			The name of the table
-	 * @param correlationName	The correlation name
-	 * @param updateOrDelete	Table is being updated/deleted from. 
-	 * @param derivedRCL		The derived column list
+	 * <ul>
+	 * <li>tableName			The name of the table</li>
+	 * <li>correlationName	The correlation name</li>
+	 * <li>updateOrDelete	Table is being updated/deleted from. </li>
+	 * <li>derivedRCL		The derived column list</li>
+	 * </ul>
 	 */
 	public void init(
 							Object arg1,
@@ -2054,8 +2060,6 @@
  	 * @param existsBaseTable Whether or not an EXISTS FBT.
 	 * @param dependencyMap	  The dependency map for the EXISTS FBT.
  	 * @param isNotExists     Whether or not for NOT EXISTS, more specifically.
-	 *
-	 * @return Nothing.
 	 */
 	void setExistsBaseTable(boolean existsBaseTable, JBitSet dependencyMap, boolean isNotExists)
 	{
@@ -2076,9 +2080,7 @@
 	/**
 	 * Clear the bits from the dependency map when join nodes are flattened
 	 *
-	 * @param vector of bit numbers to be cleared
-	 *
-	 * @return Nothing.
+	 * @param locations	vector of bit numbers to be cleared
 	 */
 	void clearDependency(Vector locations)
 	{
@@ -2093,8 +2095,6 @@
 	 * Set the table properties for this table.
 	 *
 	 * @param tableProperties	The new table properties.
-	 *
-	 * @return Nothing.
 	 */
 	public void setTableProperties(Properties tableProperties)
 	{
@@ -2399,8 +2399,6 @@
 	 *
 	 * @param fromListParam		FromList to use/append to.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void bindExpressions(FromList fromListParam)
@@ -2420,8 +2418,6 @@
 	 *
 	 * @param fromListParam		FromList to use/append to.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -2971,9 +2967,6 @@
 	 * @param acb	The ActivationClassBuilder for the class being built
 	 * @param mb	the execute() method to be built
 	 *
-	 * @return		A compiled Expression that returns a ResultSet that
-	 *				scans the table.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void generate(ActivationClassBuilder acb,
@@ -2999,9 +2992,6 @@
 	 * @param acb	The ExpressionClassBuilder for the class being built
 	 * @param mb	The execute() method to be built
 	 *
-	 * @return		A compiled Expression that returns a ResultSet that
-	 *				scans the table.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void generateResultSet(ExpressionClassBuilder acb,
@@ -3254,9 +3244,6 @@
 	 * @param acb	The ExpressionClassBuilder for the class being built
 	 * @param mb	The execute() method to be built
 	 *
-	 * @return		A compiled Expression that returns a ResultSet that
-	 *				scans the referential action dependent table.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -3450,8 +3437,6 @@
 	 * NOTE - Since the ResultColumnList generated is for the FromBaseTable,
 	 * ResultColumn.expression will be a BaseColumnNode.
 	 *
-	 * @param dataDictionary	The Datadictionary to use in look up.
-	 *
 	 * @return ResultColumnList representing all referenced columns
 	 *
 	 * @exception StandardException		Thrown on error
@@ -4046,8 +4031,6 @@
 
 	/**
 	 * Mark the underlying scan as a distinct scan.
-	 *
-	 * @return Nothing.
 	 */
 	void markForDistinctScan()
 	{
@@ -4059,8 +4042,6 @@
 	 * Notify the underlying result set tree that the result is
 	 * ordering dependent.  (For example, no bulk fetch on an index
 	 * if under an IndexRowToBaseRow.)
-	 *
-	 * @return Nothing.
 	 */
 	void markOrderingDependent()
 	{
@@ -4446,8 +4427,6 @@
 	/**
 	 * set the Information gathered from the parent table that is 
 	 * required to peform a referential action on dependent table.
-	 *
-	 * @return Nothing.
 	 */
 	public void setRefActionInfo(long fkIndexConglomId, 
 								 int[]fkColArray, 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromList.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromList.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromList.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromList.java Wed Feb  1 14:46:09 2006
@@ -126,8 +126,6 @@
 	 *
 	 * @param fromTable	A FromTable to add to the list
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -281,8 +279,6 @@
 	 * @param dataDictionary	The DataDictionary to use for binding
 	 * @param fromListParam		FromList to use/append to.
 	 *
-	 * @return	Nothing.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -328,8 +324,6 @@
 	 * binding the sub-expressions, as well as figuring out what the return 
 	 * type is for each expression.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -375,8 +369,6 @@
 	 *
 	 * @param fromListParam		FromList to use/append to.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -609,8 +601,6 @@
 	 * Check for (and reject) all ? parameters directly under the ResultColumns.
 	 * This is done for SELECT statements.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown if a ? parameter found
 	 *									directly under a ResultColumn
 	 */
@@ -658,8 +648,6 @@
 	 * @param numTables			The number of tables in the DML Statement
 	 * @param gbl				The group by list, if any
 	 *
-	 * @return Nothing.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void preprocess(int numTables,
@@ -826,8 +814,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -852,8 +838,6 @@
 	 * FromList.
 	 *
 	 * @param level		The query block level for this table.
-	 *
-	 * @return Nothing
 	 */
 	public void setLevel(int level)
 	{
@@ -1081,8 +1065,6 @@
 	 * This is useful when flattening a subquery.
 	 *
 	 * @param decrement	The amount to decrement by.
-	 *
-	 * @return Nothing;
 	 */
 	void decrementLevel(int decrement)
 	{
@@ -1460,8 +1442,6 @@
 	 * @param referencedTableMap	The referenced table map.
 	 * @param outerFromList			FromList from outer query block
 	 * @param isNotExists			Whether or not for NOT EXISTS
-	 *
-	 * @return Nothing.
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromSubquery.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromSubquery.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromSubquery.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromSubquery.java Wed Feb  1 14:46:09 2006
@@ -56,7 +56,7 @@
 	/**
 	 * Intializer for a table in a FROM list.
 	 *
-	 * @param tableName		The name of the table
+	 * @param subquery		The subquery
 	 * @param correlationName	The correlation name
 	 * @param derivedRCL		The derived column list
 	 * @param tableProperties	Properties list associated with the table
@@ -99,8 +99,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -132,8 +130,6 @@
 	 * appear in the FromList of a SelectNode generated to represent
 	 * the result of the GROUP BY.  This allows us to add ResultColumns
 	 * to the SelectNode for the user's query.
-	 *
-	 * @return Nothing.
 	 */
 	public void markAsForGroupByClause()
 	{
@@ -145,8 +141,6 @@
 	 * (This node represents the SELECT thru GROUP BY clauses.  We
 	 * appear in the FromList of a SelectNode generated to represent
 	 * the actual HAVING clause.
-	 *
-	 * @return Nothing.
 	 */
 	public void markAsForHavingClause()
 	{
@@ -226,8 +220,6 @@
 	 * This is done for SELECT statements.  For FromSubquery, we
 	 * simply pass the check through to the subquery.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown if a ? parameter found
 	 *									directly under a ResultColumn
 	 */
@@ -241,8 +233,6 @@
 	 * Bind the expressions in this FromSubquery.  This means 
 	 * binding the sub-expressions, as well as figuring out what the return 
 	 * type is for each expression.
-	 *
-	 * @return	Nothing
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromTable.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromTable.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromTable.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromTable.java Wed Feb  1 14:46:09 2006
@@ -1067,8 +1067,6 @@
 	 * Set the table # for this table.  
 	 *
 	 * @param tableNumber	The table # for this table.
-	 *
-	 * @return None.
 	 */
 	public void setTableNumber(int tableNumber)
 	{
@@ -1104,8 +1102,6 @@
 	 * Set the (query block) level (0-based) for this FromTable.
 	 *
 	 * @param level		The query block level for this FromTable.
-	 *
-	 * @return Nothing
 	 */
 	public void setLevel(int level)
 	{
@@ -1169,7 +1165,7 @@
 	/**
 	* Get a schema descriptor for the given table.
 	*
-	* @param	TableName the table name
+	* @param	tableName the table name
 	*
 	* @return Schema Descriptor
 	*
@@ -1255,8 +1251,6 @@
 	 * Fill the referencedTableMap with this ResultSetNode.
 	 *
 	 * @param passedMap	The table map to fill in.
-	 *
-	 * @return Nothing.
 	 */
 	public void fillInReferencedTableMap(JBitSet passedMap)
 	{
@@ -1315,8 +1309,6 @@
 	 * Optimize any subqueries that haven't been optimized any where
 	 * else.  This is useful for a RowResultSetNode as a derived table
 	 * because it doesn't get optimized otherwise.
-	 *
-	 * @return Nothing.
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromVTI.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromVTI.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromVTI.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromVTI.java Wed Feb  1 14:46:09 2006
@@ -380,8 +380,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -442,8 +440,6 @@
 
 	/**
 	 * Mark this VTI as the target of a delete or update.
-	 *
-	 * @return Nothing.
 	 */
 	void setTarget()
 	{
@@ -831,9 +827,6 @@
 	 * binding the sub-expressions, as well as figuring out what the return 
 	 * type is for each expression.
 	 *
-	 * @param typeCompilationFactory	The factory to get DataTypeServices
-	 *				from, if necessary.
-	 * @return	Nothing
 	 *
 	 * @exception StandardException		Thrown on error
 	 */
@@ -1155,9 +1148,6 @@
 	 *
 	 * @param acb	The ActivationClassBuilder for the class being built
 	 * @param mb The MethodBuilder for the execute() method to be built
-	 *
-	 * @return		A compiled Expression that returns a ResultSet that
-	 *				iterates through the user's java.sql.ResultSet.
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GetCurrentConnectionNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GetCurrentConnectionNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GetCurrentConnectionNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GetCurrentConnectionNode.java Wed Feb  1 14:46:09 2006
@@ -163,9 +163,6 @@
 
 	/**
 	 * Bind a ? parameter operand of the char_length function.
-	 *
-	 * @return	Nothing
-	 *
 	 */
 
 	void bindParameter()
@@ -194,8 +191,6 @@
 	 *
 	 * @param acb	The ExpressionClassBuilder for the class being built
 	 * @param mb	The method the code to place the code
-	 *
-	 * @return		The compiled Expression
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GroupByColumn.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GroupByColumn.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GroupByColumn.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GroupByColumn.java Wed Feb  1 14:46:09 2006
@@ -74,8 +74,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -116,8 +114,6 @@
 	 * Set the ColumnReference for this GroupByColumn.
 	 *
 	 * @param colRef	The new ColumnReference for this node.
-	 *
-	 * @return Nothing.
 	 */
 	public void setColumnReference(ColumnReference colRef)
 	{
@@ -154,8 +150,6 @@
 	 *							SubqueryNodes.
 	 * @param aggregateVector	The aggregate vector we build as we hit 
 	 *							AggregateNodes.
-	 *
-	 * @return	Nothing
 	 *
 	 * @exception StandardException	Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GroupByList.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GroupByList.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GroupByList.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GroupByList.java Wed Feb  1 14:46:09 2006
@@ -112,8 +112,6 @@
 	 * @param select		The SelectNode
 	 * @param aggregateVector	The aggregate vector being built as we find AggregateNodes
 	 *
-	 * @return Nothing.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void bindGroupByColumns(SelectNode select,
@@ -236,8 +234,6 @@
 	/**
 	 * Check the uniqueness of the column names within a GROUP BY list.
 	 *
-	 * @return Nothing.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void verifyUniqueGroupingColumns() throws StandardException
@@ -278,8 +274,6 @@
 	 *
 	 * @param selectNode	The SelectNode whose RCL we add to.
 	 *
-	 * @return Nothing.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void addNewGroupingColumnsToRCL(SelectNode selectNode)
@@ -358,8 +352,6 @@
 	/**
 	 * Remap all ColumnReferences in this tree to be clones of the
 	 * underlying expression.
-	 *
-	 * @return Nothing.
 	 *
 	 * @exception StandardException			Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GroupByNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GroupByNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GroupByNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/GroupByNode.java Wed Feb  1 14:46:09 2006
@@ -708,7 +708,7 @@
 	 * Optimize this GroupByNode.
 	 *
 	 * @param dataDictionary	The DataDictionary to use for optimization
-	 * @param predicateList		The PredicateList to optimize.  This should
+	 * @param predicates		The PredicateList to optimize.  This should
 	 *							be a join predicate.
 	 * @param outerRows			The number of outer joining rows
 	 *
@@ -982,8 +982,6 @@
 	 *
 	 * @param selectHasPredicates true if SELECT containing this
 	 *		vector/scalar aggregate has a restriction
-	 *
-	 * @return Nothing.
 	 *
 	 * @exception StandardException	on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/HasCorrelatedCRsVisitor.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/HasCorrelatedCRsVisitor.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/HasCorrelatedCRsVisitor.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/HasCorrelatedCRsVisitor.java Wed Feb  1 14:46:09 2006
@@ -125,8 +125,7 @@
 	/**
 	 * Shortcut to set if hasCorrelatedCRs
 	 *
-	 *	@param	true/false
-	 *	@return	nothing
+	 *	@param	value	true/false
 	 */
 	public void setHasCorrelatedCRs(boolean value)
 	{

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/HasVariantValueNodeVisitor.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/HasVariantValueNodeVisitor.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/HasVariantValueNodeVisitor.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/HasVariantValueNodeVisitor.java Wed Feb  1 14:46:09 2006
@@ -80,7 +80,7 @@
 	 *
 	 * @param variantType the type of variance we consider
 	 *		variant
-	 * @param skipParameter should I ignore parameter nodes?
+	 * @param ignoreParameters should I ignore parameter nodes?
  	 */
 	public HasVariantValueNodeVisitor(int variantType, boolean ignoreParameters)
 	{

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/HashTableNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/HashTableNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/HashTableNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/HashTableNode.java Wed Feb  1 14:46:09 2006
@@ -136,8 +136,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -187,7 +185,7 @@
 	 * compiler. A couple ResultSets (the ones used by PREPARE SELECT FILTER)
 	 * implement this method.
 	 *
-	 * @param ecb	The ExpressionClassBuilder for the class being built
+	 * @param acb	The ExpressionClassBuilder for the class being built
 	 * @param mb the method  the expression will go into
 	 *
 	 *
@@ -204,7 +202,7 @@
 	/**
 	 * Logic shared by generate() and generateResultSet().
 	 *
-	 * @param ecb	The ExpressionClassBuilder for the class being built
+	 * @param acb	The ExpressionClassBuilder for the class being built
 	 * @param mb the method  the expression will go into
 	 *
 	 * @exception StandardException		Thrown on error

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/InListOperatorNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/InListOperatorNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/InListOperatorNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/InListOperatorNode.java Wed Feb  1 14:46:09 2006
@@ -353,8 +353,6 @@
 	 * @param acb	The ExpressionClassBuilder for the class we're generating
 	 * @param mb The MethodBuilder the expression will go into
 	 *
-	 * @return	An Expression to evaluate this operator
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -507,8 +505,6 @@
 	 * @param isStartKey	are we generating start key or not
 	 * @param acb	The ExpressionClassBuilder for the class we're generating
 	 * @param mb The MethodBuilder the expression will go into
-	 *
-	 * @return	nothing
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/IndexToBaseRowNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/IndexToBaseRowNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/IndexToBaseRowNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/IndexToBaseRowNode.java Wed Feb  1 14:46:09 2006
@@ -142,9 +142,6 @@
 	 * @param acb	The ActivationClassBuilder for the class being built
 	 * @param mb the method  for the method to be built
 	 *
-	 * @return	A compiled Expression that returns a ResultSet that
-	 *			gets a base from from an index row.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void generate(ActivationClassBuilder acb,
@@ -332,8 +329,6 @@
 	 * Notify the underlying result set tree that the result is
 	 * ordering dependent.  (For example, no bulk fetch on an index
 	 * if under an IndexRowToBaseRow.)
-	 *
-	 * @return Nothing.
 	 */
 	void markOrderingDependent()
 	{

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/InsertNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/InsertNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/InsertNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/InsertNode.java Wed Feb  1 14:46:09 2006
@@ -119,7 +119,7 @@
 	 *			user did not specify the columns - in this
 	 *			case, the binding phase will have to figure
 	 *			it out.
-	 * @param queryExpresssion	The query expression that will generate
+	 * @param queryExpression	The query expression that will generate
 	 *				the rows to insert into the given table
 	 * @param targetProperties	The properties specified on the target table
 	 */
@@ -184,8 +184,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -540,8 +538,6 @@
 	 *
 	 * @param dd	The DataDictionary
 	 *
-	 * @return Nothing.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	private void verifyTargetProperties(DataDictionary dd)
@@ -723,8 +719,6 @@
 	 * @param acb	The ActivationClassBuilder for the class being built
 	 * @param mb the method  for the execute() method to be built
 	 *
-	 * @return		A compiled Expression returning an InsertResultSet
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void generate(ActivationClassBuilder acb,
@@ -823,8 +817,6 @@
 	 *
 	 * @param td	TableDescriptor for the table being inserted into
 	 *				or deleted from
-	 *
-	 * @return	Nothing
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/IsNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/IsNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/IsNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/IsNode.java Wed Feb  1 14:46:09 2006
@@ -200,8 +200,6 @@
 	 * @param acb	The ExpressionClassBuilder for the class we're generating
 	 * @param mb the method  the expression will go into
 	 *
-	 * @return	An Expression to evaluate this logical binary operator
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/IsNullNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/IsNullNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/IsNullNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/IsNullNode.java Wed Feb  1 14:46:09 2006
@@ -132,8 +132,6 @@
 	/**
 	 * Bind a ? parameter operand of the IS [NOT] NULL predicate.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/JavaToSQLValueNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/JavaToSQLValueNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/JavaToSQLValueNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/JavaToSQLValueNode.java Wed Feb  1 14:46:09 2006
@@ -66,8 +66,6 @@
 	 * Set the clause that this node appears in.
 	 *
 	 * @param clause	The clause that this node appears in.
-	 *
-	 * @return Nothing.
 	 */
 	public void setClause(int clause)
 	{
@@ -110,9 +108,6 @@
 	 * @param acb	The ExpressionClassBuilder for the class we're generating
 	 * @param mb the method  the expression will go into
 	 *
-	 * @return	An expression to convert a value from the Java domain to
-	 *			the SQL domain.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -197,8 +192,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/JavaValueNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/JavaValueNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/JavaValueNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/JavaValueNode.java Wed Feb  1 14:46:09 2006
@@ -180,8 +180,6 @@
 	 * Set the clause that this node appears in.
 	 *
 	 * @param clause	The clause that this node appears in.
-	 *
-	 * @return Nothing.
 	 */
 	public void setClause(int clause)
 	{
@@ -251,8 +249,6 @@
 	 * @param acb	The ActivationClassBuilder for the class being built
 	 * @param mb the method  the expression will go into
 	 *
-	 * @return		The compiled Expression
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -315,10 +311,8 @@
 	 * General logic shared by Core compilation and by the Replication Filter
 	 * compiler. Every child of ValueNode must implement one of these methods.
 	 *
-	 * @param ecb	The ExpressionClassBuilder for the class being built
+	 * @param acb	The ExpressionClassBuilder for the class being built
 	 * @param mb the method the expression will go into
-	 *
-	 * @return		The compiled Expression
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/JoinNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/JoinNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/JoinNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/JoinNode.java Wed Feb  1 14:46:09 2006
@@ -596,8 +596,6 @@
 	 *
 	 * @param fromListParam		FromList to use/append to.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void bindResultColumns(FromList fromListParam)
@@ -644,8 +642,6 @@
 	 * @param statement			Calling DMLStatementNode (Insert or Update)
 	 * @param fromListParam		FromList to use/append to.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -680,8 +676,6 @@
 	 * Build the RCL for this node.  We propagate the RCLs up from the
 	 * children and splice them to form this node's RCL.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -1042,8 +1036,6 @@
     
 	/** Put the expression trees in conjunctive normal form 
 	 *
-	 * @return None.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void normExpressions()
@@ -1497,8 +1489,6 @@
 	 * @param joinClause	The join clause, if any
 	 * @param subquerys		The list of subqueries in the join clause, if any
 	 *
-	 * @return Expression	The generated Expression
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	protected void generateCore(ActivationClassBuilder acb,
@@ -1702,7 +1692,7 @@
 	/** 
 	 * Convert the joinType to a string.
 	 *
-	 * @param int			The joinType as an int.
+	 * @param joinType			The joinType as an int.
 	 *
 	 * @return String		The joinType as a String.
 	 */
@@ -1775,8 +1765,6 @@
 
 	/**
 	 * Mark this node and its children as not being a flattenable join.
-	 *
-	 * @return Nothing.
 	 */
 	void notFlattenableJoin()
 	{
@@ -1823,8 +1811,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/LOBConstantNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/LOBConstantNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/LOBConstantNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/LOBConstantNode.java Wed Feb  1 14:46:09 2006
@@ -38,15 +38,20 @@
 public final class LOBConstantNode extends ConstantNode
 {
 	/**
-	 * Initializer for a LOBConstantNode.
+	 * Initializer for a LOBConstantNode. Parameters are:
 	 *
-	 * @param arg1	The TypeId for the type of the node, or a string?
-	 *
-	 * - OR *
-	 *
-	 * @param arg1	A String containing the value of the constant
-	 * @param arg2	The factory to get the TypeId
-	 *			and DataTypeServices factories from.
+	 * <ul>
+	 * <li>arg1	The TypeId for the type of the node, or a string?</li>
+	 * </ul>
+	 *
+	 * <p>
+	 * - OR -
+	 * </p>
+	 *
+	 * <ul>
+	 * <li>arg1	A String containing the value of the constant</li>
+	 * <li>arg2	The factory to get the TypeId and DataTypeServices factories from.</li>
+	 * </ul>
 	 *
 	 * @exception StandardException
 	 */
@@ -151,8 +156,6 @@
 	 *
 	 * @param acb	The ExpressionClassBuilder for the class being built
 	 * @param mb	The method the code to place the code
-	 *
-	 * @return		The compiled Expression, 
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/LengthOperatorNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/LengthOperatorNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/LengthOperatorNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/LengthOperatorNode.java Wed Feb  1 14:46:09 2006
@@ -133,8 +133,6 @@
 	/**
 	 * Bind a ? parameter operand of the XXX_length function.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/LikeEscapeOperatorNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/LikeEscapeOperatorNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/LikeEscapeOperatorNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/LikeEscapeOperatorNode.java Wed Feb  1 14:46:09 2006
@@ -438,8 +438,6 @@
 	/**
 	 * Bind this operator
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MaterializeResultSetNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MaterializeResultSetNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MaterializeResultSetNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MaterializeResultSetNode.java Wed Feb  1 14:46:09 2006
@@ -79,8 +79,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MaxMinAggregateDefinition.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MaxMinAggregateDefinition.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MaxMinAggregateDefinition.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MaxMinAggregateDefinition.java Wed Feb  1 14:46:09 2006
@@ -59,8 +59,7 @@
 	 * a sum user data types.  One option would be to run
 	 * sum on anything that implements divide().  
 	 *
-	 * @param the input type, either a user type or a java.lang object
-	 * @param implementsInterface	the interface it implements
+	 * @param inputType	the input type, either a user type or a java.lang object
 	 *
 	 * @return the output Class (null if cannot operate on
 	 *	value expression of this type.

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MethodCallNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MethodCallNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MethodCallNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MethodCallNode.java Wed Feb  1 14:46:09 2006
@@ -153,8 +153,6 @@
 	 * Set the clause that this node appears in.
 	 *
 	 * @param clause	The clause that this node appears in.
-	 *
-	 * @return Nothing.
 	 */
 	public void setClause(int clause)
 	{
@@ -177,8 +175,6 @@
 	 * to a static method call node.)
 	 *
 	 * @param methodParms		JavaValueNode[]
-	 *
-	 * @return	Nothing
 	 */
 
 	public void addParms(JavaValueNode[] methodParms)
@@ -191,8 +187,6 @@
 	 *
 	 * @param parameterList		A Vector of the parameters
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void addParms(Vector parameterList) throws StandardException
@@ -243,8 +237,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -298,8 +290,6 @@
 	 * @param subqueryList		The subquery list being built as we find SubqueryNodes
 	 * @param aggregateVector	The aggregate vector being built as we find AggregateNodes
 	 *
-	 * @return	this
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -363,8 +353,6 @@
 	 * @param parmTypeNames		Type names for parameters as object types
 	 * @param primParmTypeNames	Type names for parameters as primitive types
 	 *
-	 * @return Nothing.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	void throwNoMethodFound(String receiverTypeName,
@@ -404,8 +392,6 @@
 	 * @param	outerSubqueryList	SubqueryList from outer query block
 	 * @param	outerPredicateList	PredicateList from outer query block
 	 *
-	 * @return	Nothing.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void preprocess(int numTables,
@@ -610,8 +596,6 @@
 	 * @param mb the method the expression will go into
 	 * @param parameterNumber	Identifies which parameter to generate. 0 based.
 	 *
-	 * @return	Nothing
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 
@@ -631,8 +615,6 @@
 	 * @param parmTypeNames	String[] with the java type names for the parameters
 	 *        as declared by the method
 	 *
-	 * @return Nothing.
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 	public void	setNullParameterInfo(String[] parmTypeNames)
@@ -870,7 +852,6 @@
 	 * Parse the user supplied signature for a method and validate
 	 * it, need to match the number of parameters passed in and match
 	 * the valid types for the parameter.
-	 * @param signature complete external name with signature
 	 * @param offset Character offset of first paren
 	 * @param hasDynamicResultSets Can ResultSet[] parameters be specified.
 	 * @return The valid array of types for resolution.

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MiscellaneousStatementNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MiscellaneousStatementNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MiscellaneousStatementNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/MiscellaneousStatementNode.java Wed Feb  1 14:46:09 2006
@@ -60,8 +60,6 @@
 	 * @param acb	The ActivationClassBuilder for the class being built
 	 * @param mb the method  for the execute() method to be built
 	 *
-	 * @return		A compiled expression returning the RepCreatePublicationResultSet
-	 *
 	 * @exception StandardException		Thrown on error
 	 */
 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ModifyColumnNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ModifyColumnNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ModifyColumnNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ModifyColumnNode.java Wed Feb  1 14:46:09 2006
@@ -84,7 +84,6 @@
 	 * 1. the column type is either varchar, ....
 	 * 2. is the same type after the alter.
 	 * 3. length is greater than the old length.
-	 * @return	Nothing
 	 *
 	 * @exception StandardException		Thrown on error
 	 */
@@ -254,8 +253,6 @@
 	 *
 	 * @param dd		The DataDictionary.
 	 * @param td		The TableDescriptor.
-	 *
-	 * @return Nothing.
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NewInvocationNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NewInvocationNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NewInvocationNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NewInvocationNode.java Wed Feb  1 14:46:09 2006
@@ -64,10 +64,12 @@
 	private boolean delimitedIdentifier;
 
 	/**
-	 * Initializer for a NewInvocationNode
+	 * Initializer for a NewInvocationNode. Parameters are:
 	 *
-	 * @param javaClassName		The full package.class name of the class
-	 * @param parameterList		The parameter list for the constructor
+	 * <ul>
+	 * <li>javaClassName		The full package.class name of the class</li>
+	 * <li>parameterList		The parameter list for the constructor</li>
+	 * </ul>
 	 *
 	 * @exception StandardException		Thrown on error
 	 */
@@ -89,8 +91,6 @@
 	 * Mark this node as only needing to
 	 * to a single instantiation.  (We can
 	 * reuse the object after newing it.)
-	 *
-	 * @return Nothing.
 	 */
 	void setSingleInstantiation()
 	{
@@ -284,8 +284,6 @@
 	 * correlated with.
 	 *
 	 * @param correlationMap	The JBitSet of the tables that we are correlated with.
-	 *
-	 * @return Nothing.
 	 */
 	void getCorrelationTables(JBitSet correlationMap)
 		throws StandardException

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NodeFactoryImpl.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NodeFactoryImpl.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NodeFactoryImpl.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NodeFactoryImpl.java Wed Feb  1 14:46:09 2006
@@ -604,8 +604,7 @@
 	 * so this could be used by ALTER PUBLICATION.
 	 *
 	 * @param aliasName	The name of the alias
-	 * @param sourceJarFile			(Plugin only) the jar file that the source method lives in
-	 * @param fullStaticMethodName	The full path/method name
+	 * @param targetName	The full path/method name
 	 * @param aliasSpecificInfo	The full path of the target method name,
 	 *								if any
 	 * @param aliasType	The type of alias to create
@@ -677,7 +676,6 @@
 	 * Other attributes of the original FROM_TABLE node (such as resultColumns)
 	 * are passed into the FROM_VTI node.
 	 * 
-	 * @see org.apache.derby.iapi.sql.compile.NodeFactory#mapTableAsVTI(org.apache.derby.iapi.sql.dictionary.TableDescriptor, org.apache.derby.iapi.services.context.ContextManager)
 	 */
 	public ResultSetNode mapTableAsVTI(
 			TableDescriptor td,

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NonStaticMethodCallNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NonStaticMethodCallNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NonStaticMethodCallNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NonStaticMethodCallNode.java Wed Feb  1 14:46:09 2006
@@ -295,8 +295,6 @@
 	 * how tree printing is supposed to work.
 	 *
 	 * @param depth		The depth of this node in the tree
-	 *
-	 * @return	Nothing
 	 */
 
 	public void printSubNodes(int depth)
@@ -324,8 +322,6 @@
 	 * @param	outerFromList		FromList from outer query block
 	 * @param	outerSubqueryList	SubqueryList from outer query block
 	 * @param	outerPredicateList	PredicateList from outer query block
-	 *
-	 * @return	Nothing.
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NormalizeResultSetNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NormalizeResultSetNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NormalizeResultSetNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NormalizeResultSetNode.java Wed Feb  1 14:46:09 2006
@@ -133,8 +133,6 @@
 	/**
 	 * set the Information gathered from the parent table that is 
 	 * required to peform a referential action on dependent table.
-	 *
-	 * @return Nothing.
 	 */
 	public void setRefActionInfo(long fkIndexConglomId, 
 								 int[]fkColArray, 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NumericConstantNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NumericConstantNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NumericConstantNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/NumericConstantNode.java Wed Feb  1 14:46:09 2006
@@ -46,11 +46,7 @@
 	/**
 	 * Initializer for a typed null node
 	 *
-	 * @param arg1	The TypeId for the type of node
-	 *
-	 * - OR -
-	 *
-	 * @param arg1	An object containing the value of the constant.
+	 * @param arg1	The TypeId for the type of node OR An object containing the value of the constant.
 	 *
 	 * @exception StandardException
 	 */
@@ -215,8 +211,6 @@
 	 *
 	 * @param acb	The ExpressionClassBuilder for the class being built
 	 * @param mb	The method the expression will go into
-	 *
-	 * @return		The compiled Expression, 
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/OrNode.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/OrNode.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/OrNode.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/OrNode.java Wed Feb  1 14:46:09 2006
@@ -51,8 +51,6 @@
 	 * We will consider converting the chain to an IN list
 	 * during preprocess() if all entries are of the form:
 	 *		ColumnReference = expression
-	 *
-	 * @return Nothing.
 	 */
 	void setFirstOr()
 	{
@@ -426,8 +424,6 @@
 	/**
 	 * Do bind() by hand for an AndNode that was generated after bind(),
 	 * eg by putAndsOnTop(). (Set the data type and nullability info.)
-	 *
-	 * @return	None.
 	 *
 	 * @exception StandardException		Thrown on error
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/OrderByColumn.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/OrderByColumn.java?rev=374198&r1=374197&r2=374198&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/OrderByColumn.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/OrderByColumn.java Wed Feb  1 14:46:09 2006
@@ -258,8 +258,6 @@
 	 * We need them to point to the RCL under that one.  This is useful
 	 * when combining sorts where we need to reorder the sorting
 	 * columns.
-	 *
-	 * @return Nothing.
 	 */
 	void resetToSourceRC()
 	{