--- old/src/share/classes/javax/sql/rowset/Predicate.java 2013-06-10 10:38:24.773878318 +0100 +++ new/src/share/classes/javax/sql/rowset/Predicate.java 2013-06-10 10:38:24.505878324 +0100 @@ -53,8 +53,7 @@ * and application motivated implementations of Predicate to emerge. *

* A sample implementation would look something like this: - *

- * 
+ * 
{@code
  *    public class Range implements Predicate {
  *
  *       private Object lo[];
@@ -79,19 +78,19 @@
  *              if ((rs.getObject(idx[i]) >= lo[i]) &&
  *                  (rs.getObject(idx[i]) >= hi[i]) {
  *                  bool1 = true; // within filter constraints
- *          } else {
- *            bool2 = true; // outside of filter constraints
+ *              } else {
+ *                  bool2 = true; // outside of filter constraints
+ *              }
  *          }
- *      }
  *
- *      if (bool2) {
- *         return false;
- *      } else {
- *         return true;
+ *          if (bool2) {
+ *             return false;
+ *          } else {
+ *             return true;
+ *          }
  *      }
  *  }
- * 
- * 
+ * }
*

* The example above implements a simple range predicate. Note, that * implementations should but are not required to provider String