--- old/modules/javafx.controls/src/main/java/javafx/scene/control/cell/TextFieldTreeCell.java 2017-03-09 14:44:48.930174109 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/cell/TextFieldTreeCell.java 2017-03-09 14:44:48.822174107 -0800 @@ -83,6 +83,7 @@ * then be passed along to the {@link TreeView#onEditCommitProperty()} * callback. * + * @param The type of the elements contained within the TreeView * @param converter A {@link StringConverter} that can convert the given String * (from what the user typed in) into an instance of type T. * @return A {@link Callback} that can be inserted into the @@ -156,6 +157,7 @@ /** * The {@link StringConverter} property. + * @return the {@link StringConverter} property */ public final ObjectProperty> converterProperty() { return converter; @@ -163,6 +165,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); @@ -170,6 +173,7 @@ /** * Returns the {@link StringConverter} used in this cell. + * @return the {@link StringConverter} used in this cell */ public final StringConverter getConverter() { return converterProperty().get();