--- old/modules/javafx.controls/src/main/java/javafx/scene/control/cell/TextFieldListCell.java 2017-03-09 14:44:48.206174097 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/cell/TextFieldListCell.java 2017-03-09 14:44:48.102174095 -0800 @@ -77,6 +77,7 @@ * instance of type T. This item will then be passed along to the * {@link ListView#onEditCommitProperty()} callback. * + * @param The type of the item contained within the Cell * @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 @@ -147,6 +148,7 @@ /** * The {@link StringConverter} property. + * @return the {@link StringConverter} property */ public final ObjectProperty> converterProperty() { return converter; @@ -154,6 +156,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); @@ -161,6 +164,7 @@ /** * Returns the {@link StringConverter} used in this cell. + * @return the {@link StringConverter} used in this cell */ public final StringConverter getConverter() { return converterProperty().get();