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 rh...@apache.org on 2016/07/17 17:11:39 UTC

svn commit: r1753091 [2/5] - in /db/derby/code/trunk/java: client/org/apache/derby/client/am/ client/org/apache/derby/client/net/ drda/org/apache/derby/drda/ drda/org/apache/derby/impl/drda/ drda/org/apache/derby/mbeans/drda/ engine/org/apache/derby/ca...

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/services/io/FormatableBitSet.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/services/io/FormatableBitSet.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/services/io/FormatableBitSet.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/services/io/FormatableBitSet.java Sun Jul 17 17:11:36 2016
@@ -221,7 +221,7 @@ public final class FormatableBitSet impl
 	** @return The length in bits for this value
 	**
 	** NOTE: could possibly be changed to a long.  As is
-	** we are restricted to 2^(31-3) -> 256meg instead
+	** we are restricted to 2^(31-3) -> 256meg instead
 	** of 2^31 (Integer.MAX_VALUE) like other datatypes
 	** (or 2 gig).  If it is ever changed to a long
 	** be sure to change read/writeExternal which write
@@ -392,18 +392,18 @@ public final class FormatableBitSet impl
 	 * Will always do a byte by byte compare.
 	 *
 	 * Given 2 similar bits of unequal lengths (x and y),
-	 * where x.getLength() < y.getLength() but where:
+	 * where x.getLength() &lt; y.getLength() but where:
 	 *
 	 *	 x[0..x.getLength()] == y[0..x.getLength()]
 	 *
-	 * then x < y.
+	 * then x &lt; y.
 	 *
 	 *
 	 * @param other the other bit to compare to
 	 *
-	 * @return -1	- if other <  this
+	 * @return -1	- if other &lt;  this
 	 *			0	- if other == this
-	 *			1	- if other >  this
+	 *			1	- if other &gt;  this
 	 *
 	 */
 	public int compare(FormatableBitSet other)

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/services/io/InputStreamUtil.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/services/io/InputStreamUtil.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/services/io/InputStreamUtil.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/services/io/InputStreamUtil.java Sun Jul 17 17:11:36 2016
@@ -128,7 +128,7 @@ public final class InputStreamUtil {
      * @param is
      *      InputStream to be skipped.
      * @param skippedBytes
-     *      number of bytes to skip. if skippedBytes <= zero, do nothing.
+     *      number of bytes to skip. if skippedBytes &gl;= zero, do nothing.
      * @throws EOFException
      *      if EOF meets before requested number of bytes are skipped.
      * @throws IOException

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/services/locks/Lockable.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/services/locks/Lockable.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/services/locks/Lockable.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/services/locks/Lockable.java Sun Jul 17 17:11:36 2016
@@ -42,7 +42,7 @@ import java.util.Hashtable;
 	<LI>Otherwise the request is granted if the following expression evaluates
 	to true for every other lock <TT>{ CSn, Qn}</TT> held on <TT> L </TT>
 	<UL>
-	<LI> <PRE>    ( ( CSn == CS1 ) && L.lockerAlwaysCompatible() ) </PRE>
+	<LI> <PRE>    ( ( CSn == CS1 ) &amp;&amp; L.lockerAlwaysCompatible() ) </PRE>
 	<LI> <PRE> || (L.reqestCompatible(Q1, Qn)) </PRE>
 	</UL>
 	</OL>

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/ResultSet.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/ResultSet.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/ResultSet.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/ResultSet.java Sun Jul 17 17:11:36 2016
@@ -43,13 +43,13 @@ import org.w3c.dom.Element;
  * <p>
  * Although ExecRow is used on the interface, it is not available to
  * users of the API. They should use Row, the exposed super-interface
- * of ExecRow.  <<I couldn't find another way to perform this mapping...>>
+ * of ExecRow.  [I couldn't find another way to perform this mapping...]
  * <p>
  * Valid transitions: <ul>
- * <li> open->close</li>
- * <li> close->open</li>
- * <li> close->finished</li>
- * <li> finished->open</li>
+ * <li> open-&gt;close</li>
+ * <li> close-&gt;open</li>
+ * <li> close-&gt;finished</li>
+ * <li> finished-&gt;open</li>
  * </ul>
  *
  */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/C_NodeTypes.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/C_NodeTypes.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/C_NodeTypes.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/C_NodeTypes.java Sun Jul 17 17:11:36 2016
@@ -248,7 +248,7 @@ public interface C_NodeTypes
     static final int FINAL_VALUE = NEXT_SEQUENCE_NODE;
 
     /**
-     * Extensions to this interface can use nodetypes > MAX_NODE_TYPE with out fear of collision
+     * Extensions to this interface can use nodetypes &gt; MAX_NODE_TYPE with out fear of collision
      * with C_NodeTypes
      */
     static final int MAX_NODE_TYPE = 999;

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/CompilerContext.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/CompilerContext.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/CompilerContext.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/CompilerContext.java Sun Jul 17 17:11:36 2016
@@ -324,7 +324,7 @@ public interface CompilerContext extends
 	 * in execution constructs.  Execution code will have to generate:
 	 *	<pre>
 	 *	(#objectType) (this.getPreparedStatement().getSavedObject(#int))
-	 *  <\pre>
+	 *  </pre>
 	 *
 	 * @param o object to add to the pool of saved objects
 	 * @return the entry # for the object

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/CostEstimate.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/CostEstimate.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/CostEstimate.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/CostEstimate.java Sun Jul 17 17:11:36 2016
@@ -52,7 +52,7 @@ public interface CostEstimate extends St
 	 *
 	 * @param other		The cost estimate to compare this one with
 	 *
-	 * @return	< 0 if this < other, 0 if this == other, > 0 if this > other
+	 * @return	&lt; 0 if this &lt; other, 0 if this == other, &gt; 0 if this &gt; other
 	 */
 	double compare(CostEstimate other);
 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/Optimizable.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/Optimizable.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/Optimizable.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/Optimizable.java Sun Jul 17 17:11:36 2016
@@ -445,8 +445,8 @@ public interface Optimizable extends Vis
 	 *
 	 * @param predList		The predicate list to check
 	 *
-	 * @return	<= 0 means there is no uniqueness condition
-	 *			> 0 means there is a uniqueness condition,
+	 * @return	&lt;= 0 means there is no uniqueness condition
+	 *			&gt; 0 means there is a uniqueness condition,
 	 *			and the return value is the number of rows per scan.
 	 *
 	 * @exception StandardException		Thrown on error

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/Optimizer.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/Optimizer.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/Optimizer.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/compile/Optimizer.java Sun Jul 17 17:11:36 2016
@@ -254,8 +254,8 @@ public interface Optimizer
 	 *
 	 * @param predList		The predicate list to check
 	 *
-	 * @return	<= 0 means there is no uniqueness condition
-	 *			> 0 means there is a uniqueness condition on an
+	 * @return	&lt;= 0 means there is no uniqueness condition
+	 *			&gt; 0 means there is a uniqueness condition on an
 	 *			outer table, and the return value is the reciprocal of
 	 *			the maximum number of times the optimizer estimates that each
 	 *			unique key will be returned. For example, 0.5 means the

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/conn/LanguageConnectionContext.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/conn/LanguageConnectionContext.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/conn/LanguageConnectionContext.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/conn/LanguageConnectionContext.java Sun Jul 17 17:11:36 2016
@@ -786,7 +786,7 @@ public interface LanguageConnectionConte
     /**
 	  *	Reports how many statement levels deep we are.
 	  *
-	  *	@return	a statement level >= OUTERMOST_STATEMENT
+	  *	@return	a statement level &gt;= OUTERMOST_STATEMENT
 	  */
 	public	int		getStatementDepth();
 
@@ -1050,7 +1050,7 @@ public interface LanguageConnectionConte
 	public String getDbname();
 
 	/**
-	 * Check if in SQL standard mode, with support for Grant & Revoke
+	 * Check if in SQL standard mode, with support for Grant and Revoke
 	 *
 	 * @return True if SQL standard permissions are being used
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/depend/DependencyManager.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/depend/DependencyManager.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/depend/DependencyManager.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/depend/DependencyManager.java Sun Jul 17 17:11:36 2016
@@ -342,7 +342,7 @@ public interface DependencyManager {
     public static final int DROP_AGGREGATE = 51;
 
     /**
-     * Extensions to this interface may use action codes > MAX_ACTION_CODE without fear of
+     * Extensions to this interface may use action codes &gt; MAX_ACTION_CODE without fear of
      * clashing with action codes in this base interface.
      */
     public static final int MAX_ACTION_CODE = 0XFFFF;

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/dictionary/RoleClosureIterator.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/dictionary/RoleClosureIterator.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/dictionary/RoleClosureIterator.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/dictionary/RoleClosureIterator.java Sun Jul 17 17:11:36 2016
@@ -51,7 +51,7 @@ public interface RoleClosureIterator
      *
      *          a1            a2         a3
      *         / | \           |          |
-     *        /  b  +--------> c          d
+     *        /  b  +--------&gt; c          d
      *       j   |              \        /
      *           e---+           \      /
      *            \   \           \    /

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/ExecPreparedStatement.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/ExecPreparedStatement.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/ExecPreparedStatement.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/ExecPreparedStatement.java Sun Jul 17 17:11:36 2016
@@ -98,7 +98,7 @@ public interface ExecPreparedStatement
      * </p>
      *
      * <pre>
-     * getActivationClass() == gc && upToDate()
+     * getActivationClass() == gc &amp;&amp; upToDate()
      * </pre>
      *
      * @param gc a generated class that must be identical to {@code

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/ExecutionFactory.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/ExecutionFactory.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/ExecutionFactory.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/ExecutionFactory.java Sun Jul 17 17:11:36 2016
@@ -161,7 +161,7 @@ public interface ExecutionFactory {
 	 *					the column and the Orderable value returns the
 	 *					unknown truth value
 	 * @param negateCompareResult	True means to negate the result of the comparison.
-	 *					So, for example, to do a > comparison, you would
+	 *					So, for example, to do a &gt; comparison, you would
 	 *					pass ORDER_OP_LESSOREQUALS and set negate to true.
 	 * @param variantType	The variantType for the qualifier's orderable.
 	 *						(Determines whether or not to cache the value.)
@@ -237,7 +237,7 @@ public interface ExecutionFactory {
 		to be updated.  Used by update only.
 	  @param baseRowReadList the columns in the base row that were
 		read (1 based)
-	  @param baseRowReadMap baseRowReadMap[heapColId]->readRowColId
+	  @param baseRowReadMap baseRowReadMap[heapColId]-&gt;readRowColId
 	         (0 based)
 	  @param streamStorableColIds Column ids of stream storable
 	         columns. (0 based, Only needed for sync. null if none or

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/ResultSetFactory.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/ResultSetFactory.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/ResultSetFactory.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/ResultSetFactory.java Sun Jul 17 17:11:36 2016
@@ -596,7 +596,7 @@ public interface ResultSetFactory {
 
 	/**
 		A once result set iterates over its source,
-		raising an error if the source returns > 1 row and
+		raising an error if the source returns &gt; 1 row and
 		returning a row with all columns set to nulls
 		if the source returns no rows.
 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/RowChanger.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/RowChanger.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/RowChanger.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/execute/RowChanger.java Sun Jul 17 17:11:36 2016
@@ -74,7 +74,7 @@ public interface RowChanger
 	  Open this RowChanger to avoid fixing indexes that do not change
 	  during update operations. 
 
-	  @param fixOnUpdate fixOnUpdat[ix] == true ==> fix index 'ix' on
+	  @param fixOnUpdate fixOnUpdat[ix] == true ==&gt; fix index 'ix' on
 	  an update operation.
 	  @param lockMode	The lock mode to use
 							(row or table, see TransactionController)

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/BackingStoreHashtable.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/BackingStoreHashtable.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/BackingStoreHashtable.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/BackingStoreHashtable.java Sun Jul 17 17:11:36 2016
@@ -58,7 +58,7 @@ for creating the underlying overflow con
 The hash table will be built logically as follows (actual implementation
 may differ).  The important points are that the hash value is the standard
 java hash value on the row[key_column_numbers[0], if key_column_numbers.length is 1,
-or row[key_column_numbers[0, 1, ...]] if key_column_numbers.length > 1, 
+or row[key_column_numbers[0, 1, ...]] if key_column_numbers.length &gt; 1, 
 and that duplicate detection is done by the standard java duplicate detection provided by 
 java.util.Hashtable.
 </p>
@@ -176,11 +176,11 @@ public class BackingStoreHashtable
      * RowLocations in a non-null row_source can be added later
      * if there is a use-case that stresses this behavior.
      * <p>
-     * If the number of rows is <= "max_inmemory_rowcnt", then the rows are
+     * If the number of rows is &lt;= "max_inmemory_rowcnt", then the rows are
      * inserted into a java.util.HashMap. In this case no
      * TransactionController is necessary, a "null" tc is valid.
      * <p>
-     * If the number of rows is > "max_inmemory_rowcnt", then the rows will
+     * If the number of rows is &gt; "max_inmemory_rowcnt", then the rows will
      * be all placed in some sort of Access temporary file on disk.  This 
      * case requires a valid TransactionController.
      *

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/BinaryOrderable.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/BinaryOrderable.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/BinaryOrderable.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/BinaryOrderable.java Sun Jul 17 17:11:36 2016
@@ -33,7 +33,7 @@ import java.io.IOException;
   The Orderable interface represents a value that can
   be linearly ordered.
   <P>
-  Currently only supports linear (<, =, <=) operations.
+  Currently only supports linear (&lt;, =, &lt;=) operations.
   Eventually we may want to do other types of orderings,
   in which case there would probably be a number of interfaces
   for each "class" of ordering.
@@ -55,9 +55,9 @@ public interface BinaryOrderable extends
 	 *
 	 * @param other		The Orderable to compare this one to.
 	 *
-	 * @return  <0 - this Orderable is less than other.
+	 * @return  &lt;0 - this Orderable is less than other.
 	 * 			 0 - this Orderable equals other.
-	 *			>0 - this Orderable is greater than other.
+	 *			&gt;0 - this Orderable is greater than other.
      *
      *			The code should not explicitly look for -1, or 1.
 	 *
@@ -75,8 +75,8 @@ public interface BinaryOrderable extends
 	 * values.
 	 *
 	 * @param op	Orderable.ORDER_OP_EQUALS means do an = comparison.
-	 *				Orderable.ORDER_OP_LESSTHAN means compare this < other.
-	 *				Orderable.ORDER_OP_LESSOREQUALS means compare this <= other.
+	 *				Orderable.ORDER_OP_LESSTHAN means compare this &lt; other.
+	 *				Orderable.ORDER_OP_LESSOREQUALS means compare this &lt;= other.
 	 * @param other	The Orderable to compare this one to.
 	 * @param orderedNulls	True means to treat nulls as ordered values,
 	 *						that is, treat SQL null as equal to null, and less

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/ConglomerateController.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/ConglomerateController.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/ConglomerateController.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/ConglomerateController.java Sun Jul 17 17:11:36 2016
@@ -112,7 +112,7 @@ public interface ConglomerateController
      * unknown condition of the controller following a transaction ending error.
      * Use this call when closing all controllers as part of an abort of a 
      * transaction.
-     * <p)
+     * <p>
      * This call is meant to only be used internally by the Storage system,
      * clients of the storage system should use the simple close() interface.
      * <p>

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/DatabaseInstant.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/DatabaseInstant.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/DatabaseInstant.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/DatabaseInstant.java Sun Jul 17 17:11:36 2016
@@ -35,9 +35,9 @@ import java.io.Serializable;
  * event E2. We call this I(E2). By definition
  *
  * <OL>
- * <LI> If I(E1) < I(E2) event E1 occurred before event E2
+ * <LI> If I(E1) &lt; I(E2) event E1 occurred before event E2
  * <LI> If I(E2) = I(E2) event E1 is the same event as E2
- * <LI> If I(E1) > I(E2) event E1 occurred after event E2
+ * <LI> If I(E1) &gt; I(E2) event E1 occurred after event E2
  * </OL>
  *
  * <P>It is not meaningful to compare a DatabaseInstant from one database with a

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/FileResource.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/FileResource.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/FileResource.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/FileResource.java Sun Jul 17 17:11:36 2016
@@ -88,7 +88,7 @@ public interface FileResource {
 		throws StandardException;
 
     /**
-     * During hard upgrade to >= 10.9, remove a jar directory (at post-commit 
+     * During hard upgrade to &lt;= 10.9, remove a jar directory (at post-commit 
      * time) from the database.
      * @param f
      * @exception StandardException if an error occurs

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/GroupFetchScanController.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/GroupFetchScanController.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/GroupFetchScanController.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/GroupFetchScanController.java Sun Jul 17 17:11:36 2016
@@ -78,7 +78,7 @@ public interface GroupFetchScanControlle
      * return how many rows were filled in.  If fetchNextGroup() returns 0
      * then the scan is complete, (ie. the scan is in the same state as if
      * fetchNext() had returned false).  If the scan is not complete then
-     * fetchNext() will return (1 <= row_count <= N).
+     * fetchNext() will return (1 &lt;= row_count &lt;= N).
      * <p>
      * The current position of the scan is undefined if fetchNextSet()
      * is used (ie. mixing fetch()/fetchNext() and fetchNextSet() calls
@@ -119,10 +119,10 @@ public interface GroupFetchScanControlle
 	 * @return The number of qualifying rows found and copied into the 
      *         provided array of rows.  If 0 then the scan is complete, 
      *         otherwise the return value will be: 
-     *         1 <= row_count <= row_array.length
+     *         1 &lt;= row_count &lt;= row_array.length
      *
      * @param row_array         The array of rows to copy rows into.  
-     *                          row_array[].length must >= 1.   The first entry
+     *                          row_array[].length must &gt;= 1.   The first entry
      *                          must be non-null destination rows, other entries
      *                          may be null and will be allocated by access
      *                          if needed.

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/Qualifier.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/Qualifier.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/Qualifier.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/Qualifier.java Sun Jul 17 17:11:36 2016
@@ -95,7 +95,7 @@ import org.apache.derby.iapi.error.Stand
   <p>
   Note that any of the arrays qual[0].length ... qual[qual.length -1] may also
   be of length 1, thus no guarantee is made the presence of OR
-  predicates if qual.length > 1. See example 1a.
+  predicates if qual.length &lt; 1. See example 1a.
   <p>
   The following give pseudo-code examples of building Qualifier arrays:
   <p>
@@ -184,7 +184,7 @@ public interface Qualifier
 	 *		<li> CONSTANT 		- can be cached across executions. </li></ul>
 	 * <p>
 	 * <b>NOTE</b>: the following is guaranteed: <i> 
-	 *		VARIANT < SCAN_INVARIANT < QUERY_INVARIANT < CONSTANT
+	 *		VARIANT &lt; SCAN_INVARIANT &lt; QUERY_INVARIANT &lt; CONSTANT
 	 */
 	public static final int VARIANT = 0;
 	public static final int SCAN_INVARIANT = 1;

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/RowSource.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/RowSource.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/RowSource.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/RowSource.java Sun Jul 17 17:11:36 2016
@@ -98,7 +98,7 @@ public interface RowSource {
 	  not in the partial row if validColumns.get(N) returns false.  Column N is
 	  in the partial row if validColumns.get(N) returns true.  If column N is
 	  in the partial row then it maps to DataValueDescriptor[M] where M is the 
-      count of calls to validColumns.get(i) that return true where i < N.  If
+      count of calls to validColumns.get(i) that return true where i &lt; N.  If
 	  DataValueDescriptor.length is greater than the number of columns 
       indicated by validColumns the extra entries are ignored.  
 	*/

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/RowUtil.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/RowUtil.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/RowUtil.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/RowUtil.java Sun Jul 17 17:11:36 2016
@@ -84,7 +84,7 @@ import java.util.Vector;
        returns false.
   <LI> Column N is in the partial row if validColumns.isSet(N) returns true.
   <LI> If column N is in the partial row then it maps to row[N].
-	   If N >= row.length then the column is taken as non existent for an
+	   If N &gt;= row.length then the column is taken as non existent for an
 	   insert or update, and not fetched on a fetch.
   </UL>
   If row.length is greater than the number of columns indicated by validColumns
@@ -209,7 +209,7 @@ public class RowUtil
      *                        the number of columns, allow caller to tell
      *                        the maximum column number if it knows.  
      *                        -1  means caller does not know.
-     *                        >=0 number is the largest column number.
+     *                        &gt;=0 number is the largest column number.
      *                           
      * @param columnList valid columns in the row
      *

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/SortCostController.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/SortCostController.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/SortCostController.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/SortCostController.java Sun Jul 17 17:11:36 2016
@@ -83,7 +83,7 @@ public interface SortCostController
      * 
      * @param estimatedInputRows   The number of rows that the caller estimates
      *                        will be inserted into the sort.  This number must
-     *                        be >= 0.
+     *                        be &gt;= 0.
      *
      * @param estimatedExportRows   The number of rows that the caller estimates
      *                        will be exported by the sorter.  For instance if
@@ -92,7 +92,7 @@ public interface SortCostController
      *                        estimatedExportRows would be 1.  If no duplicate
      *                        eliminate is to be done then estimatedExportRows 
      *                        would be the same as estimatedInputRows.  This 
-     *                        number must be >= 0.
+     *                        number must be &gt;= 0.
      *
      * @param estimatedRowSize The estimated average row size of the rows 
      *                         being sorted.  This is the client portion of the 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/TransactionController.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/TransactionController.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/TransactionController.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/access/TransactionController.java Sun Jul 17 17:11:36 2016
@@ -723,7 +723,7 @@ public interface TransactionController
      * Once the first write of a non-readOnly nested transaction is done,
      * then the nested user transaction must be committed or aborted before
      * any write operation is attempted in the parent transaction.  
-     * (p>
+     * <p>
      * fix for DERBY-5493 introduced a behavior change for commits executed
      * against an updatable nested user transaction.  Prior to this change
      * commits would execute a "lazy" commit where commit log record would only
@@ -1009,14 +1009,14 @@ public interface TransactionController
 	|                   | value | op | value |op | returned     |serialization |
 	+-------------------+-------+----+-------+---+--------------+--------------+
 	| x = 5             | {5}   | GE | {5}   |GT |{5,2} .. {5,6}|{4,6} .. {5,6}|
-	| x > 5             | {5}   | GT | null  |   |{6,1} .. {9,1}|{5,6} .. {9,1}|
-	| x >= 5            | {5}   | GE | null  |   |{5,2} .. {9,1}|{4,6} .. {9,1}|
-	| x <= 5            | null  |    | {5}   |GT |{1,1} .. {5,6}|first .. {5,6}|
-  	| x < 5             | null  |    | {5}   |GE |{1,1} .. {4,6}|first .. {4,6}|
-	| x >= 5 and x <= 7 | {5},  | GE | {7}   |GT |{5,2} .. {7,1}|{4,6} .. {7,1}|
-	| x = 5  and y > 2  | {5,2} | GT | {5}   |GT |{5,4} .. {5,6}|{5,2} .. {5,6}|
-	| x = 5  and y >= 2 | {5,2} | GE | {5}   |GT |{5,2} .. {5,6}|{4,6} .. {5,6}|
-	| x = 5  and y < 5  | {5}   | GE | {5,5} |GE |{5,2} .. {5,4}|{4,6} .. {5,4}|
+	| x &gt; 5             | {5}   | GT | null  |   |{6,1} .. {9,1}|{5,6} .. {9,1}|
+	| x &gt;= 5            | {5}   | GE | null  |   |{5,2} .. {9,1}|{4,6} .. {9,1}|
+	| x &lt;= 5            | null  |    | {5}   |GT |{1,1} .. {5,6}|first .. {5,6}|
+  	| x &lt; 5             | null  |    | {5}   |GE |{1,1} .. {4,6}|first .. {4,6}|
+	| x &gt;= 5 and x &lt;= 7 | {5},  | GE | {7}   |GT |{5,2} .. {7,1}|{4,6} .. {7,1}|
+	| x = 5  and y &gt; 2  | {5,2} | GT | {5}   |GT |{5,4} .. {5,6}|{5,2} .. {5,6}|
+	| x = 5  and y &gt;= 2 | {5,2} | GE | {5}   |GT |{5,2} .. {5,6}|{4,6} .. {5,6}|
+	| x = 5  and y &lt; 5  | {5}   | GE | {5,5} |GE |{5,2} .. {5,4}|{4,6} .. {5,4}|
 	| x = 2             | {2}   | GE | {2}   |GT | none         |{1,1} .. {1,1}|
 	+-------------------+-------+----+-------+---+--------------+--------------+
 	</blockquote></pre>
@@ -1069,11 +1069,11 @@ public interface TransactionController
     if (qualifier != null)
     {
         <blockquote><pre>
-		for (int and_clause; and_clause < qualifier.length; and_clause++)
+		for (int and_clause; and_clause &lt; qualifier.length; and_clause++)
 		{
             boolean or_qualifies = false;
 
-            for (int or_clause; or_clause < qualifier[and_clause].length; or_clause++)
+            for (int or_clause; or_clause &lt; qualifier[and_clause].length; or_clause++)
             {
                 <blockquote><pre>
                 DataValueDescriptor key     = 
@@ -1465,7 +1465,7 @@ public interface TransactionController
      * implementation may only track this info under SanityManager.DEBUG mode.
      * If the implementation does not track the info it will return -1 (so
      * code using this call to verify that no congloms are open should check
-     * for return <= 0 rather than == 0).
+     * for return &lt;= 0 rather than == 0).
      * <p>
      * The return value depends on the "which_to_count" parameter as follows:
      * <UL>

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/ContainerLock.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/ContainerLock.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/ContainerLock.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/ContainerLock.java Sun Jul 17 17:11:36 2016
@@ -89,7 +89,7 @@ public final class ContainerLock {
 
 	/**
 		Get an integer representation of the type of the lock. This method is guaranteed
-		to return an integer >= 0 and < C_NUMBER. No correlation between the value
+		to return an integer &gt;= 0 and &t; C_NUMBER. No correlation between the value
 		and one of the static variables (CIS etc.) is guaranteed, except that
 		the values returned do not change.
 	*/

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/Page.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/Page.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/Page.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/Page.java Sun Jul 17 17:11:36 2016
@@ -459,7 +459,7 @@ public interface Page
      * If slot == recordCount(), then the record is inserted in a new slot, no
      * records are moved. <BR>
      *
-     * If slot is > recordCount() or if slot < FIRST_SLOT_NUMBER, an exception
+     * If slot is &gt; recordCount() or if slot &lt; FIRST_SLOT_NUMBER, an exception
      * will be thrown.
      *
      * <P><B>Space Policy</B><BR>
@@ -648,7 +648,7 @@ public interface Page
 		is locked but not fetched.
 		<BR>
 		The fieldId of the first field is 0.
-		If the fieldId is >= the number of fields on the record, 
+		If the fieldId is &gt;= the number of fields on the record, 
 		column is restored to null
 		<P>
 		<B>Locking Policy</B>
@@ -857,7 +857,7 @@ public interface Page
      *
      *
      * @param slot	            the starting slot number
-     * @param numpurges	        number of slots to purge.  If <= 0, 
+     * @param numpurges	        number of slots to purge.  If &lt;= 0, 
      *                          just returns as a no-op.
 	 * @param needDataLogged    if set to true data is logged for purges else 
      *                          only headers.
@@ -895,8 +895,8 @@ public interface Page
      *
      * <BR>DestPage must have at least dest_slot row occupying slot[0] to
      * slot[dest_slot-1].  DestPage must have enough space to take the copied
-     * over data.  Rows that occupied slot number > dest_slot will be moved up
-     * the slot (I.e., slot[dest_slot] -> slot[dest_slot + num_rows]).  
+     * over data.  Rows that occupied slot number &gt; dest_slot will be moved up
+     * the slot (I.e., slot[dest_slot] -&gt; slot[dest_slot + num_rows]).  
      *
      * <BR>If this operation rolls back, this page (the src page) will get the
      * rows back and the dest page will purge the rows that were copied - this
@@ -1016,7 +1016,7 @@ public interface Page
      * after the delete commits.  
      * <p>
      * Will return true if the number of non-deleted rows on the page is
-     * <= "num_non_deleted_rows".  For instance 0 means schedule reclaim
+     * &lt;= "num_non_deleted_rows".  For instance 0 means schedule reclaim
      * only if all rows are deleted, 1 if all rows but one are deleted.  
      * <p>
      * Will return true if the row just deleted is either a long row or long

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/RawStoreFactory.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/RawStoreFactory.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/RawStoreFactory.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/RawStoreFactory.java Sun Jul 17 17:11:36 2016
@@ -289,8 +289,8 @@ public interface RawStoreFactory extends
         if this property is set, it will attempt to allocate
         CONTAINER_INITIAL_PAGES, but with no guarentee.
         CONTAIENR_INITIAL_PAGES legally ranges from 1 to
-        MAX_CONTAINER_INITIAL_PAGES.  Values < 1 will
-        be set to 1 and values > MAX_CONTAINER_INITIAL_PAGES will be set to
+        MAX_CONTAINER_INITIAL_PAGES.  Values &lt; 1 will
+        be set to 1 and values &gt; MAX_CONTAINER_INITIAL_PAGES will be set to
         MAX_CONTAINER_INITIAL_PAGES
 
         This property should only be set in the PROPERTIES list in a CREATE

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/RowLock.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/RowLock.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/RowLock.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/RowLock.java Sun Jul 17 17:11:36 2016
@@ -110,7 +110,7 @@ public final class RowLock {
 
 	/**
 		Get an integer representation of the type of the lock. This method is 
-        guaranteed to return an integer >= 0 and < R_NUMBER. No correlation 
+        guaranteed to return an integer &gt;= 0 and &lt; R_NUMBER. No correlation 
         between the value and one of the static variables (CIS etc.) is 
         guaranteed, except that the values returned do not change.
 	*/

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/CharStreamHeaderGenerator.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/CharStreamHeaderGenerator.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/CharStreamHeaderGenerator.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/CharStreamHeaderGenerator.java Sun Jul 17 17:11:36 2016
@@ -36,8 +36,8 @@ import java.io.ObjectOutput;
  * </ul>
  * The length is encoded like this:
  * <pre>
-            out.writeByte((byte)(byteLength >>> 8));
-            out.writeByte((byte)(byteLength >>> 0));
+            out.writeByte((byte)(byteLength &gt;&gt;&gt; 8));
+            out.writeByte((byte)(byteLength &gt;&gt;&gt; 0));
  * </pre>
  */
 //@Immutable

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataType.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataType.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataType.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataType.java Sun Jul 17 17:11:36 2016
@@ -749,11 +749,11 @@ public abstract class DataType
 	}
 
 	/**
-	 * The <> operator as called from the language module, as opposed to
+	 * The &lt;&gt; operator as called from the language module, as opposed to
 	 * the storage module. This default implementations uses compare().
 	 *
-	 * @param left			The value on the left side of the <>
-	 * @param right			The value on the right side of the <>
+	 * @param left			The value on the left side of the &lt;&gt;
+	 * @param right			The value on the right side of the &lt;&gt;
 	 *
 	 * @return	A SQL boolean value telling whether the two parameters
 	 *			are not equal
@@ -770,11 +770,11 @@ public abstract class DataType
 									 left.compare(right) != 0);
 	}
 	/**
-	* The < operator as called from the language module, as opposed to
+	* The &lt; operator as called from the language module, as opposed to
 	* the storage module.
 	*
-	* @param left   The value on the left side of the <
-	* @param right   The value on the right side of the <
+	* @param left   The value on the left side of the &lt;
+	* @param right   The value on the right side of the &lt;
 	*
 	* @return A SQL boolean value telling whether the first operand is less
 	*   than the second operand
@@ -791,11 +791,11 @@ public abstract class DataType
 		  left.compare(right) < 0);
 	}
 	/**
-	 * The > operator as called from the language module, as opposed to
+	 * The &gt; operator as called from the language module, as opposed to
 	 * the storage module. This default implementations uses compare().
 	 *
-	 * @param left			The value on the left side of the >
-	 * @param right			The value on the right side of the >
+	 * @param left			The value on the left side of the &gt;
+	 * @param right			The value on the right side of the &gt;
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is greater
 	 *			than the second operand
@@ -813,11 +813,11 @@ public abstract class DataType
 	}
 
 	/**
-	 * The <= operator as called from the language module, as opposed to
+	 * The &lt;= operator as called from the language module, as opposed to
 	 * the storage module. This default implementations uses compare().
 	 *
-	 * @param left			The value on the left side of the <=
-	 * @param right			The value on the right side of the <=
+	 * @param left			The value on the left side of the &lt;=
+	 * @param right			The value on the right side of the &lt;=
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is less
 	 *			than or equal to the second operand
@@ -835,11 +835,11 @@ public abstract class DataType
 	}
 
 	/**
-	 * The >= operator as called from the language module, as opposed to
+	 * The &gt;= operator as called from the language module, as opposed to
 	 * the storage module. This default implementation uses compare().
 	 *
-	 * @param left			The value on the left side of the >=
-	 * @param right			The value on the right side of the >=
+	 * @param left			The value on the left side of the &gt;=
+	 * @param right			The value on the right side of the &gt;=
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is greater
 	 *			than or equal to the second operand
@@ -899,8 +899,8 @@ public abstract class DataType
          * whether they should be lower than non-NULL values, or higher
 	 *
 	 * @param op	Orderable.ORDER_OP_EQUALS means do an = comparison.
-	 *				Orderable.ORDER_OP_LESSTHAN means compare this < other.
-	 *				Orderable.ORDER_OP_LESSOREQUALS means compare this <= other.
+	 *				Orderable.ORDER_OP_LESSTHAN means compare this &lt; other.
+	 *				Orderable.ORDER_OP_LESSOREQUALS means compare this &lt;= other.
 	 * @param other	The DataValueDescriptor to compare this one to.
 	 * @param orderedNulls	True means to treat nulls as ordered values,
 	 *						that is, treat SQL null as equal to null, and either greater or less
@@ -968,9 +968,9 @@ public abstract class DataType
 	 * @param other		The Orderable to compare this one to.
          % @param nullsOrderedLow True if null should be lower than non-NULL
 	 *
-	 * @return  <0 - this Orderable is less than other.
+	 * @return  &lt;0 - this Orderable is less than other.
 	 * 			 0 - this Orderable equals other.
-	 *			>0 - this Orderable is greater than other.
+	 *			&gt;0 - this Orderable is greater than other.
      *
      *			The code should not explicitly look for -1, or 1.
 	 *
@@ -1027,7 +1027,7 @@ public abstract class DataType
 	}
 
 	/**
-	 * Flip the operator used in a comparison (< -> >).
+	 * Flip the operator used in a comparison (&lt; -&gt; &gt;).
 	 * This is useful when flipping a comparison due to
 	 * type precedence.
 	 * 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataTypeDescriptor.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataTypeDescriptor.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataTypeDescriptor.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataTypeDescriptor.java Sun Jul 17 17:11:36 2016
@@ -1321,7 +1321,7 @@ public final class DataTypeDescriptor im
 	 * Check if this type is comparable with the passed type.
 	 * 
 	 * @param compareWithDTD the type of the instance to compare with this type.
-	 * @param forEquals True if this is an = or <> comparison, false
+	 * @param forEquals True if this is an = or != comparison, false
 	 *					otherwise.
 	 * @param cf		A ClassFactory
 	 * @return true if compareWithDTD is comparable to this type, else false.

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataValueDescriptor.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataValueDescriptor.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataValueDescriptor.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataValueDescriptor.java Sun Jul 17 17:11:36 2016
@@ -693,7 +693,7 @@ public interface DataValueDescriptor ext
 						throws StandardException;
 
 	/**
-	 * The SQL language <> operator.  This method is called from the language
+	 * The SQL language &lt;&gt; operator.  This method is called from the language
 	 * module.  The storage module uses the compare method in Orderable.
 	 *
 	 * @param left		The value on the left side of the operator
@@ -708,7 +708,7 @@ public interface DataValueDescriptor ext
 						throws StandardException;
 
 	/**
-	 * The SQL language < operator.  This method is called from the language
+	 * The SQL language &lt; operator.  This method is called from the language
 	 * module.  The storage module uses the compare method in Orderable.
 	 *
 	 * @param left		The value on the left side of the operator
@@ -723,7 +723,7 @@ public interface DataValueDescriptor ext
 						throws StandardException;
 
 	/**
-	 * The SQL language > operator.  This method is called from the language
+	 * The SQL language &gt; operator.  This method is called from the language
 	 * module.  The storage module uses the compare method in Orderable.
 	 *
 	 * @param left		The value on the left side of the operator
@@ -738,7 +738,7 @@ public interface DataValueDescriptor ext
 						throws StandardException;
 
 	/**
-	 * The SQL language <= operator.  This method is called from the language
+	 * The SQL language &lt;= operator.  This method is called from the language
 	 * module.  The storage module uses the compare method in Orderable.
 	 *
 	 * @param left		The value on the left side of the operator
@@ -753,7 +753,7 @@ public interface DataValueDescriptor ext
 						throws StandardException;
 
 	/**
-	 * The SQL language >= operator.  This method is called from the language
+	 * The SQL language &gt;= operator.  This method is called from the language
 	 * module.  The storage module uses the compare method in Orderable.
 	 *
 	 * @param left		The value on the left side of the operator
@@ -810,9 +810,9 @@ public interface DataValueDescriptor ext
 	 *
 	 * @param other		The Orderable to compare this one to.
 	 *
-	 * @return  <0 - this Orderable is less than other.
+	 * @return  &lt;0 - this Orderable is less than other.
 	 * 			 0 - this Orderable equals other.
-	 *			>0 - this Orderable is greater than other.
+	 *			&gt;0 - this Orderable is greater than other.
      *
      *			The code should not explicitly look for -1, or 1.
 	 *
@@ -829,9 +829,9 @@ public interface DataValueDescriptor ext
 	 * @param other		The Orderable to compare this one to.
          % @param nullsOrderedLow True if null should be lower than non-NULL
 	 *
-	 * @return  <0 - this Orderable is less than other.
+	 * @return  &lt;0 - this Orderable is less than other.
 	 * 			 0 - this Orderable equals other.
-	 *			>0 - this Orderable is greater than other.
+	 *			&gt;0 - this Orderable is greater than other.
      *
      *			The code should not explicitly look for -1, or 1.
 	 *
@@ -847,8 +847,8 @@ public interface DataValueDescriptor ext
 	 * values.
 	 *
 	 * @param op	Orderable.ORDER_OP_EQUALS means do an = comparison.
-	 *				Orderable.ORDER_OP_LESSTHAN means compare this < other.
-	 *				Orderable.ORDER_OP_LESSOREQUALS means compare this <= other.
+	 *				Orderable.ORDER_OP_LESSTHAN means compare this &lt; other.
+	 *				Orderable.ORDER_OP_LESSOREQUALS means compare this &lt;= other.
 	 * @param other	The DataValueDescriptor to compare this one to.
 	 * @param orderedNulls	True means to treat nulls as ordered values,
 	 *						that is, treat SQL null as equal to null, and less
@@ -881,8 +881,8 @@ public interface DataValueDescriptor ext
          * whether they should be lower than non-NULL values, or higher
 	 *
 	 * @param op	Orderable.ORDER_OP_EQUALS means do an = comparison.
-	 *				Orderable.ORDER_OP_LESSTHAN means compare this < other.
-	 *				Orderable.ORDER_OP_LESSOREQUALS means compare this <= other.
+	 *				Orderable.ORDER_OP_LESSTHAN means compare this &lt; other.
+	 *				Orderable.ORDER_OP_LESSOREQUALS means compare this &lt;= other.
 	 * @param other	The DataValueDescriptor to compare this one to.
 	 * @param orderedNulls	True means to treat nulls as ordered values,
 	 *						that is, treat SQL null as equal to null, and either greater or less

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/Like.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/Like.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/Like.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/Like.java Sun Jul 17 17:11:36 2016
@@ -402,13 +402,13 @@ public class Like {
 	}
 
 	/**
-	 * Return the substring from the pattern for the optimization >= clause.
+	 * Return the substring from the pattern for the optimization &gt;= clause.
 	 *
 	 * @param pattern	The right side of the LIKE
 	 * @param escape	The escape clause
 	 * @param maxWidth	Maximum length of column, for null padding
 	 *
-	 * @return	The String for the >= clause
+	 * @return	The String for the &gt;= clause
 	 */
 	public static String greaterEqualString(String pattern, String escape, int maxWidth)
 	    throws StandardException
@@ -564,13 +564,13 @@ public class Like {
 	}
 
 	/**
-	 * Return the substring from the pattern for the < clause.
+	 * Return the substring from the pattern for the &lt; clause.
 	 *
 	 * @param pattern	The right side of the LIKE
 	 * @param escape	The escape clause
 	 * @param maxWidth	Maximum length of column, for null padding
 	 *
-	 * @return	The String for the < clause
+	 * @return	The String for the &lt; clause
 	 * @exception StandardException thrown if data invalid
 	 */
 	public static String lessThanString(String pattern, String escape, int maxWidth)

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/NumberDataValue.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/NumberDataValue.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/NumberDataValue.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/NumberDataValue.java Sun Jul 17 17:11:36 2016
@@ -107,7 +107,7 @@ public interface NumberDataValue extends
 	 * @param result		The result of the previous call to this method, null
 	 *						if not called yet.
 	 * @param scale			The scale of the result, for decimal type.  If pass
-	 *						in value < 0, can calculate it dynamically.
+	 *						in value &lt; 0, can calculate it dynamically.
 	 *
 	 * @return	dividend / divisor
 	 *

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/Orderable.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/Orderable.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/Orderable.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/Orderable.java Sun Jul 17 17:11:36 2016
@@ -28,7 +28,7 @@ import org.apache.derby.iapi.error.Stand
   The Orderable interface represents a value that can
   be linearly ordered.
   <P>
-  Currently only supports linear (<, =, <=) operations.
+  Currently only supports linear (&lt;, =, &lt;=) operations.
   Eventually we may want to do other types of orderings,
   in which case there would probably be a number of interfaces
   for each "class" of ordering.
@@ -43,21 +43,21 @@ import org.apache.derby.iapi.error.Stand
 public interface Orderable
 {
 
-	/**	 Ordering operation constant representing '<' **/
+	/**	 Ordering operation constant representing '&lt;' **/
 	static final int ORDER_OP_LESSTHAN = 1;
 	/**	 Ordering operation constant representing '=' **/
 	static final int ORDER_OP_EQUALS = 2;
-	/**	 Ordering operation constant representing '<=' **/
+	/**	 Ordering operation constant representing '&lt;=' **/
 	static final int ORDER_OP_LESSOREQUALS = 3;
 
 	/** 
 	 * These 2 ordering operations are used by the language layer
 	 * when flipping the operation due to type precedence rules.
-	 * (For example, 1 < 1.1 -> 1.1 > 1)
+	 * (For example, 1 &lt; 1.1 -&gt; 1.1 &gt; 1)
 	 */
-	/**	 Ordering operation constant representing '>' **/
+	/**	 Ordering operation constant representing '&gt;' **/
 	static final int ORDER_OP_GREATERTHAN = 4;
-	/**	 Ordering operation constant representing '>=' **/
+	/**	 Ordering operation constant representing '&gt;=' **/
 	static final int ORDER_OP_GREATEROREQUALS = 5;
 
 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLBinary.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLBinary.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLBinary.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLBinary.java Sun Jul 17 17:11:36 2016
@@ -70,12 +70,12 @@ import java.sql.PreparedStatement;
   <encoded length> is one of N styles.
   <UL>
   <LI> (5.x format zero) 4 byte Java format integer value 0 - either <raw data> is 0 bytes/bits  or an unknown number of bytes.
-  <LI> (5.x format bits) 4 byte Java format integer value >0 (positive) - number of bits in <raw data>, number of bytes in <raw data>
+  <LI> (5.x format bits) 4 byte Java format integer value &gt;0 (positive) - number of bits in raw data, number of bytes in <raw data>
   is the minimum number of bytes required to store the number of bits.
-  <LI> (Derby format) 1 byte encoded length (0 <= L <= 31) - number of bytes of <raw data> - encoded = 0x80 & L
-  <LI> (Derby format) 3 byte encoded length (32 <= L < 64k) - number of bytes of <raw data> - encoded = 0xA0 <L as Java format unsigned short>
-  <LI> (Derby format) 5 byte encoded length (64k <= L < 2G) - number of bytes of <raw data> - encoded = 0xC0 <L as Java format integer>
-  <LI> (future) to be determined L >= 2G - encoded 0xE0 <encoding of L to be determined>
+  <LI> (Derby format) 1 byte encoded length (0 &lt;= L &lt;= 31) - number of bytes of raw data - encoded = 0x80 &amp; L
+  <LI> (Derby format) 3 byte encoded length (32 &lt;= L &lt; 64k) - number of bytes of raw data - encoded = 0xA0 <L as Java format unsigned short>
+  <LI> (Derby format) 5 byte encoded length (64k &lt;= L &lt; 2G) - number of bytes of raw data - encoded = 0xC0 <L as Java format integer>
+  <LI> (future) to be determined L &gt;= 2G - encoded 0xE0 <encoding of L to be determined>
   (0xE0 is an esacape to allow any number of arbitary encodings in the future).
   </UL>
   <BR>
@@ -750,11 +750,11 @@ abstract class SQLBinary
 	}
 
 	/**
-	 * The <> operator as called from the language module, as opposed to
+	 * The &lt;&gt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <>
-	 * @param right			The value on the right side of the <>
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the two parameters
 	 * are not equal
@@ -783,11 +783,11 @@ abstract class SQLBinary
 	}
 
 	/**
-	 * The < operator as called from the language module, as opposed to
+	 * The &lt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <
-	 * @param right			The value on the right side of the <
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is
 	 *			less than the second operand
@@ -816,11 +816,11 @@ abstract class SQLBinary
 	}
 
 	/**
-	 * The > operator as called from the language module, as opposed to
+	 * The &gt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the >
-	 * @param right			The value on the right side of the >
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is
 	 *			greater than the second operand
@@ -849,11 +849,11 @@ abstract class SQLBinary
 	}
 
 	/**
-	 * The <= operator as called from the language module, as opposed to
+	 * The &lt;= operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <=
-	 * @param right			The value on the right side of the <=
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is
 	 *			less than or equal to the second operand
@@ -882,11 +882,11 @@ abstract class SQLBinary
 	}
 
 	/**
-	 * The >= operator as called from the language module, as opposed to
+	 * The &gt;= operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the >=
-	 * @param right			The value on the right side of the >=
+	 * @param left			The value on the left side of the &gt;=
+	 * @param right			The value on the right side of the &gt;=
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is
 	 *			greater than or equal to the second operand

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLBoolean.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLBoolean.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLBoolean.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLBoolean.java Sun Jul 17 17:11:36 2016
@@ -603,11 +603,11 @@ public final class SQLBoolean
 	}
 
 	/**
-	 * The <> operator as called from the language module, as opposed to
+	 * The &lt;&gt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <>
-	 * @param right			The value on the right side of the <>
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the two parameters are
 	 *			not equal
@@ -625,11 +625,11 @@ public final class SQLBoolean
 	}
 
 	/**
-	 * The < operator as called from the language module, as opposed to
+	 * The &lt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <
-	 * @param right			The value on the right side of the <
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the left operand is
 	 *			less than the right operand
@@ -653,11 +653,11 @@ public final class SQLBoolean
 	}
 
 	/**
-	 * The > operator as called from the language module, as opposed to
+	 * The &gt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the >
-	 * @param right			The value on the right side of the >
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the left operand is
 	 *			greater than the right operand
@@ -681,11 +681,11 @@ public final class SQLBoolean
 	}
 
 	/**
-	 * The <= operator as called from the language module, as opposed to
+	 * The &lt;= operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <=
-	 * @param right			The value on the right side of the <=
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the left operand is
 	 *			less than or equal to the right operand
@@ -709,11 +709,11 @@ public final class SQLBoolean
 	}
 
 	/**
-	 * The >= operator as called from the language module, as opposed to
+	 * The &gt;= operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the >=
-	 * @param right			The value on the right side of the >=
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the left operand is
 	 *			greater than or equal to the right operand

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLChar.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLChar.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLChar.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLChar.java Sun Jul 17 17:11:36 2016
@@ -2022,11 +2022,11 @@ readingLoop:
     }
 
     /**
-     * The <> operator as called from the language module, as opposed to
+     * The &lt;&gt; operator as called from the language module, as opposed to
      * the storage module.
      *
-     * @param left          The value on the left side of the <>
-     * @param right         The value on the right side of the <>
+     * @param left          The value on the left side of the operator
+     * @param right         The value on the right side of the operator
      *
      * @return  A SQL boolean value telling whether the two parameters
      * are not equal
@@ -2056,11 +2056,11 @@ readingLoop:
     }
 
     /**
-     * The < operator as called from the language module, as opposed to
+     * The &lt; operator as called from the language module, as opposed to
      * the storage module.
      *
-     * @param left          The value on the left side of the <
-     * @param right         The value on the right side of the <
+     * @param left          The value on the left side of the operator
+     * @param right         The value on the right side of the operator
      *
      * @return  A SQL boolean value telling whether the first operand is
      *          less than the second operand
@@ -2090,11 +2090,11 @@ readingLoop:
     }
 
     /**
-     * The > operator as called from the language module, as opposed to
+     * The &gt; operator as called from the language module, as opposed to
      * the storage module.
      *
-     * @param left          The value on the left side of the >
-     * @param right         The value on the right side of the >
+     * @param left          The value on the left side of the operator
+     * @param right         The value on the right side of the operator
      *
      * @return  A SQL boolean value telling whether the first operand is
      *          greater than the second operand
@@ -2124,11 +2124,11 @@ readingLoop:
     }
 
     /**
-     * The <= operator as called from the language module, as opposed to
+     * The &lt;= operator as called from the language module, as opposed to
      * the storage module.
      *
-     * @param left          The value on the left side of the <=
-     * @param right         The value on the right side of the <=
+     * @param left          The value on the left side of the operator
+     * @param right         The value on the right side of the operator
      *
      * @return  A SQL boolean value telling whether the first operand is
      *          less than or equal to the second operand
@@ -2158,11 +2158,11 @@ readingLoop:
     }
 
     /**
-     * The >= operator as called from the language module, as opposed to
+     * The &gt;= operator as called from the language module, as opposed to
      * the storage module.
      *
-     * @param left          The value on the left side of the >=
-     * @param right         The value on the right side of the >=
+     * @param left          The value on the left side of the operator
+     * @param right         The value on the right side of the operator
      *
      * @return  A SQL boolean value telling whether the first operand is
      *          greater than or equal to the second operand
@@ -2675,9 +2675,9 @@ readingLoop:
      * @param op1               The first String
      * @param op2               The second String
      *
-     * @return  -1 - op1 <  op2
+     * @return  -1 - op1 &lt;  op2
      *           0 - op1 == op2
-     *           1 - op1 > op2
+     *           1 - op1 &gt; op2
      */
     protected static int stringCompare(String op1, String op2)
     {
@@ -2807,9 +2807,9 @@ readingLoop:
      * @param op1               The first String
      * @param op2               The second String
      *
-     * @return  -1 - op1 <  op2
+     * @return  -1 - op1 &lt;  op2
      *           0 - op1 == op2
-     *           1 - op1 > op2
+     *           1 - op1 &gt; op2
      */
     protected static int stringCompare(
     char[]  op1, 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLDate.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLDate.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLDate.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLDate.java Sun Jul 17 17:11:36 2016
@@ -57,7 +57,7 @@ import java.text.ParseException;
 /**
  * This contains an instance of a SQL Date.
  * <p>
- * The date is stored as int (year << 16 + month << 8 + day)
+ * The date is stored as int (year &lt;&lt; 16 + month &lt;&lt; 8 + day)
  * Null is represented by an encodedDate value of 0.
  * Some of the static methods in this class are also used by SQLTime and SQLTimestamp
  * so check those classes if you change the date encoding
@@ -743,7 +743,7 @@ public final class SQLDate extends DataT
 	/**
 	 *	computeEncodedDate extracts the year, month and date from
 	 *	a Calendar value and encodes them as
-	 *		year << 16 + month << 8 + date
+	 *		year &lt;&lt; 16 + month &lt;&lt; 8 + date
 	 *	Use this function will help to remember to add 1 to month
 	 *  which is 0 based in the Calendar class
 	 *	@param cal	the Calendar 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLDecimal.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLDecimal.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLDecimal.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLDecimal.java Sun Jul 17 17:11:36 2016
@@ -814,7 +814,7 @@ public final class SQLDecimal extends Nu
 	 * @param divisor	The denominator
 	 * @param result	The result of a previous call to this method, null
 	 *					if not called yet
-	 * @param scale		The result scale, if < 0, calculate the scale according
+	 * @param scale		The result scale, if &lt; 0, calculate the scale according
 	 *					to the actual values' sizes
 	 *
 	 * @return	A SQLDecimal containing the result of the division

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLDouble.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLDouble.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLDouble.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLDouble.java Sun Jul 17 17:11:36 2016
@@ -511,11 +511,11 @@ public final class SQLDouble extends Num
 	}
 
 	/**
-	 * The <> operator as called from the language module, as opposed to
+	 * The &lt;&gt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <>
-	 * @param right			The value on the right side of the <>
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *						is not.
 	 *
 	 * @return	A SQL boolean value telling whether the two parameters
@@ -534,11 +534,11 @@ public final class SQLDouble extends Num
 	}
 
 	/**
-	 * The < operator as called from the language module, as opposed to
+	 * The &lt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <
-	 * @param right			The value on the right side of the <
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is less
 	 *			than the second operand
@@ -556,11 +556,11 @@ public final class SQLDouble extends Num
 	}
 
 	/**
-	 * The > operator as called from the language module, as opposed to
+	 * The &gt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the >
-	 * @param right			The value on the right side of the >
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is greater
 	 *			than the second operand
@@ -578,11 +578,11 @@ public final class SQLDouble extends Num
 	}
 
 	/**
-	 * The <= operator as called from the language module, as opposed to
+	 * The &lt;= operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <=
-	 * @param right			The value on the right side of the <=
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is less
 	 *			than or equal to the second operand
@@ -600,11 +600,11 @@ public final class SQLDouble extends Num
 	}
 
 	/**
-	 * The >= operator as called from the language module, as opposed to
+	 * The &gt;= operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the >=
-	 * @param right			The value on the right side of the >=
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is greater
 	 *			than or equal to the second operand

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLInteger.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLInteger.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLInteger.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLInteger.java Sun Jul 17 17:11:36 2016
@@ -415,11 +415,11 @@ public final class SQLInteger
 	}
 
 	/**
-	 * The <> operator as called from the language module, as opposed to
+	 * The &lt;&gt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <>
-	 * @param right			The value on the right side of the <>
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the two parameters
 	 *			are not equal
@@ -437,11 +437,11 @@ public final class SQLInteger
 	}
 
 	/**
-	 * The < operator as called from the language module, as opposed to
+	 * The &lt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <
-	 * @param right			The value on the right side of the <
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is less
 	 *			than the second operand
@@ -459,11 +459,11 @@ public final class SQLInteger
 	}
 
 	/**
-	 * The > operator as called from the language module, as opposed to
+	 * The &gt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the >
-	 * @param right			The value on the right side of the >
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is greater
 	 *			than the second operand
@@ -481,11 +481,11 @@ public final class SQLInteger
 	}
 
 	/**
-	 * The <= operator as called from the language module, as opposed to
+	 * The &lt;= operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <=
-	 * @param right			The value on the right side of the <=
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is less
 	 *			than or equal to the second operand
@@ -503,11 +503,11 @@ public final class SQLInteger
 	}
 
 	/**
-	 * The >= operator as called from the language module, as opposed to
+	 * The &gt;= operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the >=
-	 * @param right			The value on the right side of the >=
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is greater
 	 *			than or equal to the second operand

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLLongint.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLLongint.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLLongint.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLLongint.java Sun Jul 17 17:11:36 2016
@@ -455,11 +455,11 @@ public final class SQLLongint
 	}
 
 	/**
-	 * The <> operator as called from the language module, as opposed to
+	 * The &lt;&gt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <>
-	 * @param right			The value on the right side of the <>
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the two parameters
 	 *			are not equal
@@ -477,11 +477,11 @@ public final class SQLLongint
 	}
 
 	/**
-	 * The < operator as called from the language module, as opposed to
+	 * The &lt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <
-	 * @param right			The value on the right side of the <
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is less
 	 *			than the second operand
@@ -499,11 +499,11 @@ public final class SQLLongint
 	}
 
 	/**
-	 * The > operator as called from the language module, as opposed to
+	 * The &gt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the >
-	 * @param right			The value on the right side of the >
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is greater
 	 *			than the second operand
@@ -521,11 +521,11 @@ public final class SQLLongint
 	}
 
 	/**
-	 * The <= operator as called from the language module, as opposed to
+	 * The &lt;= operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <=
-	 * @param right			The value on the right side of the <=
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is less
 	 *			than or equal to the second operand
@@ -543,11 +543,11 @@ public final class SQLLongint
 	}
 
 	/**
-	 * The >= operator as called from the language module, as opposed to
+	 * The &gt;= operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the >=
-	 * @param right			The value on the right side of the >=
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is greater
 	 *			than or equal to the second operand

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLReal.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLReal.java?rev=1753091&r1=1753090&r2=1753091&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLReal.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLReal.java Sun Jul 17 17:11:36 2016
@@ -528,11 +528,11 @@ public final class SQLReal
 	}
 
 	/**
-	 * The <> operator as called from the language module, as opposed to
+	 * The &lt;&gt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <>
-	 * @param right			The value on the right side of the <>
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the two parameters
 	 *			are not equal
@@ -550,11 +550,11 @@ public final class SQLReal
 	}
 
 	/**
-	 * The < operator as called from the language module, as opposed to
+	 * The &lt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <
-	 * @param right			The value on the right side of the <
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is less
 	 *			than the second operand
@@ -572,11 +572,11 @@ public final class SQLReal
 	}
 
 	/**
-	 * The > operator as called from the language module, as opposed to
+	 * The &gt; operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the >
-	 * @param right			The value on the right side of the >
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is greater
 	 *			than the second operand
@@ -594,11 +594,11 @@ public final class SQLReal
 	}
 
 	/**
-	 * The <= operator as called from the language module, as opposed to
+	 * The &lt;= operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the <=
-	 * @param right			The value on the right side of the <=
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is less
 	 *			than or equal to the second operand
@@ -616,11 +616,11 @@ public final class SQLReal
 	}
 
 	/**
-	 * The >= operator as called from the language module, as opposed to
+	 * The &gt;= operator as called from the language module, as opposed to
 	 * the storage module.
 	 *
-	 * @param left			The value on the left side of the >=
-	 * @param right			The value on the right side of the >=
+	 * @param left			The value on the left side of the operator
+	 * @param right			The value on the right side of the operator
 	 *
 	 * @return	A SQL boolean value telling whether the first operand is greater
 	 *			than or equal to the second operand