--- old/modules/javafx.controls/src/main/java/javafx/scene/control/cell/CheckBoxTreeTableCell.java 2017-03-09 14:44:43.518174014 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/cell/CheckBoxTreeTableCell.java 2017-03-09 14:44:43.414174012 -0800 @@ -65,6 +65,7 @@ * it is recommended to directly observe the boolean properties that are * manipulated by the CheckBox.

* + * @param The type of the TableView generic type * @param The type of the elements contained within the TreeTableColumn. * @since JavaFX 8.0 */ @@ -89,6 +90,8 @@ * CheckBox will reflect the state of the {@code ObservableValue}, * if it changes externally). * + * @param The type of the TableView generic type + * @param column the TreeTableColumn of type {@link Boolean} * @return A {@link Callback} that will return a {@link TreeTableCell} that is * able to work on the type of element contained within the TreeTableColumn. */ @@ -105,6 +108,7 @@ *

When used in a TreeTableColumn, the CheckBoxCell is rendered with a * CheckBox centered in the column. * + * @param The type of the TableView generic type * @param The type of the elements contained within the {@link TreeTableColumn} * instance. * @param getSelectedProperty A Callback that, given an object of @@ -131,6 +135,7 @@ *

When used in a TreeTableColumn, the CheckBoxCell is rendered with a * CheckBox centered in the column. * + * @param The type of the TableView generic type * @param The type of the elements contained within the {@link TreeTableColumn} * instance. * @param getSelectedProperty A Callback that, given an object of @@ -168,6 +173,7 @@ *

When used in a TreeTableColumn, the CheckBoxCell is rendered with a * CheckBox centered in the column. * + * @param The type of the TableView generic type * @param The type of the elements contained within the {@link TreeTableColumn} * instance. * @param getSelectedProperty A Callback that, given an object of type @@ -281,6 +287,7 @@ /** * The {@link StringConverter} property. + * @return the {@link StringConverter} property */ public final ObjectProperty> converterProperty() { return converter; @@ -288,6 +295,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); @@ -295,6 +303,7 @@ /** * Returns the {@link StringConverter} used in this cell. + * @return the {@link StringConverter} used in this cell */ public final StringConverter getConverter() { return converterProperty().get(); @@ -311,6 +320,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>> selectedStateCallbackProperty() { return selectedStateCallback; @@ -318,6 +329,8 @@ /** * 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> value) { selectedStateCallbackProperty().set(value); @@ -325,6 +338,8 @@ /** * 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();