--- old/modules/javafx.controls/src/main/java/javafx/scene/control/cell/CheckBoxTreeCell.java 2017-03-09 14:44:43.162174007 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/cell/CheckBoxTreeCell.java 2017-03-09 14:44:43.058174005 -0800 @@ -166,7 +166,7 @@ * @param The type of the elements contained within the {@link TreeItem} * instances. * @param getSelectedProperty A {@link Callback} that, given an object of - * type TreeItem, will return an {@code ObservableValue} + * type {@literal TreeItem}, will return an {@code ObservableValue} * that represents whether the given item is selected or not. This * {@code ObservableValue} will be bound bidirectionally * (meaning that the CheckBox in the cell will set/unset this property @@ -202,15 +202,15 @@ * @param The type of the elements contained within the {@link TreeItem} * instances. * @param getSelectedProperty A Callback that, given an object of - * type TreeItem, will return an {@code ObservableValue} + * type {@literal TreeItem}, will return an {@code ObservableValue} * that represents whether the given item is selected or not. This * {@code ObservableValue} will be bound bidirectionally * (meaning that the CheckBox in the cell will set/unset this property * based on user interactions, and the CheckBox will reflect the state of * the {@code ObservableValue}, if it changes externally). - * @param converter A StringConverter that, give an object of type TreeItem, - * will return a String that can be used to represent the object - * visually. The default implementation in {@link #forTreeView(Callback)} + * @param converter A StringConverter that, give an object of type + * {@literal TreeItem}, will return a String that can be used to represent the + * object visually. The default implementation in {@link #forTreeView(Callback)} * is to simply call .toString() on all non-null items (and to just * return an empty string in cases where the given item is null). * @return A {@link Callback} that will return a TreeCell that is able to @@ -270,7 +270,7 @@ * {@link CheckBoxTreeItem}. * *

To call this method, it is necessary to provide a - * {@link Callback} that, given an object of type TreeItem, will return + * {@link Callback} that, given an object of type {@literal TreeItem}, will return * an {@code ObservableValue} that represents whether the given * item is selected or not. This {@code ObservableValue} will be * bound bidirectionally (meaning that the CheckBox in the cell will @@ -302,7 +302,7 @@ * {@link CheckBoxTreeItem}. * *

To call this method, it is necessary to provide a {@link Callback} - * that, given an object of type TreeItem, will return an + * that, given an object of type {@literal TreeItem}, will return an * {@code ObservableValue} that represents whether the given item * is selected or not. This {@code ObservableValue} will be bound * bidirectionally (meaning that the CheckBox in the cell will set/unset @@ -321,8 +321,9 @@ * @param getSelectedProperty A {@link Callback} that will return an * {@code ObservableValue} that represents whether the given * item is selected or not. - * @param converter A StringConverter that, give an object of type TreeItem, will - * return a String that can be used to represent the object visually. + * @param converter {@literal A StringConverter that, give an object of type + * TreeItem, will return a String that can be used to represent the + * object visually.} */ public CheckBoxTreeCell( final Callback, ObservableValue> getSelectedProperty, @@ -359,6 +360,7 @@ /** * The {@link StringConverter} property. + * @return the {@link StringConverter} property */ public final ObjectProperty>> converterProperty() { return converter; @@ -366,6 +368,7 @@ /** * Sets the {@link StringConverter} to be used in this cell. + * @param value the {@link StringConverter} to be used in this cell */ public final void setConverter(StringConverter> value) { converterProperty().set(value); @@ -373,6 +376,7 @@ /** * Returns the {@link StringConverter} used in this cell. + * @return the {@link StringConverter} used in this cell */ public final StringConverter> getConverter() { return converterProperty().get(); @@ -389,6 +393,8 @@ /** * Property representing the {@link Callback} that is bound to by the * CheckBox shown on screen. + * @return the property representing the {@link Callback} that is bound to + * by the CheckBox shown on screen */ public final ObjectProperty, ObservableValue>> selectedStateCallbackProperty() { return selectedStateCallback; @@ -396,6 +402,7 @@ /** * Sets the {@link Callback} that is bound to by the CheckBox shown on screen. + * @param value the {@link Callback} that is bound to by the CheckBox shown on screen */ public final void setSelectedStateCallback(Callback, ObservableValue> value) { selectedStateCallbackProperty().set(value); @@ -403,6 +410,7 @@ /** * Returns the {@link Callback} that is bound to by the CheckBox shown on screen. + * @return the {@link Callback} that is bound to by the CheckBox shown on screen */ public final Callback, ObservableValue> getSelectedStateCallback() { return selectedStateCallbackProperty().get();