--- old/modules/javafx.base/src/main/java/javafx/collections/ListChangeListener.java 2016-08-08 12:10:25.000000000 -0700 +++ new/modules/javafx.base/src/main/java/javafx/collections/ListChangeListener.java 2016-08-08 12:10:25.000000000 -0700 @@ -72,7 +72,7 @@ * pattern for doing this looks something like the following:
* *
-     * ObservableList theList = ...;
+     * ObservableList<Item> theList = ...;
      *
      * theList.addListener(new ListChangeListener<Item>() {
      *     public void onChanged(Change<tem> c) {
@@ -203,10 +203,10 @@
          * Set operation will act like remove and add operation at the same time.
          * 

* Usually, it's not necessary to use this method directly. - * Handling remove operation and then add operation, as in the example {@link ListChangeListener$Change above}, - * will effectively handle also set operation. + * Handling remove operation and then add operation, as in the example + * {@link Change} above, will effectively handle also set operation. * - * @return same as wasAdded() && wasRemoved() + * @return same as {@code wasAdded() && wasRemoved()} * @throws IllegalStateException if this Change is in initial state */ public boolean wasReplaced() {