--- old/modules/javafx.controls/src/main/java/javafx/scene/control/cell/CheckBoxListCell.java 2017-03-09 14:44:42.442173995 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/cell/CheckBoxListCell.java 2017-03-09 14:44:42.326173993 -0800 @@ -52,7 +52,7 @@ * selected or not. This 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 - * ObservableValue, if it changes externally). + * {@code ObservableValue}, if it changes externally). * *

Note that the CheckBoxListCell renders the CheckBox 'live', meaning that * the CheckBox is always interactive and can be directly toggled by the user. @@ -201,6 +201,7 @@ /** * The {@link StringConverter} property. + * @return the {@link StringConverter} property */ public final ObjectProperty> converterProperty() { return converter; @@ -208,6 +209,7 @@ /** * Sets the {@link StringConverter} to be used in this cell. + * @param value the {@link StringConverter} */ public final void setConverter(StringConverter value) { converterProperty().set(value); @@ -215,6 +217,7 @@ /** * Returns the {@link StringConverter} used in this cell. + * @return the {@link StringConverter} used in this cell */ public final StringConverter getConverter() { return converterProperty().get(); @@ -230,6 +233,8 @@ /** * Property representing 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 ObjectProperty>> selectedStateCallbackProperty() { return selectedStateCallback; @@ -237,6 +242,7 @@ /** * Sets the {@link Callback} that is bound to by the CheckBox shown on screen. + * @param value the {@link Callback} */ public final void setSelectedStateCallback(Callback> value) { selectedStateCallbackProperty().set(value); @@ -244,6 +250,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> getSelectedStateCallback() { return selectedStateCallbackProperty().get();