--- old/modules/javafx.controls/src/main/java/javafx/scene/control/cell/ChoiceBoxListCell.java 2017-03-09 14:44:43.886174020 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/cell/ChoiceBoxListCell.java 2017-03-09 14:44:43.786174018 -0800 @@ -248,6 +248,7 @@ /** * The {@link StringConverter} property. + * @return the {@link StringConverter} property */ public final ObjectProperty> converterProperty() { return converter; @@ -255,6 +256,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); @@ -262,6 +264,7 @@ /** * Returns the {@link StringConverter} used in this cell. + * @return the {@link StringConverter} used in this cell */ public final StringConverter getConverter() { return converterProperty().get(); @@ -277,6 +280,7 @@ /** * Returns the items to be displayed in the ChoiceBox when it is showing. + * @return the items to be displayed in the ChoiceBox when it is showing */ public ObservableList getItems() { return items;