--- old/modules/javafx.controls/src/main/java/javafx/scene/control/ComboBox.java 2017-03-09 14:44:17.262173549 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/ComboBox.java 2017-03-09 14:44:17.150173547 -0800 @@ -183,6 +183,8 @@ *

Admittedly the above approach is far more verbose, but it offers the * required functionality without encountering the scenegraph constraints. * + * @param The type of the value that has been selected or otherwise entered + * in to this ComboBox * @see ComboBoxBase * @see Cell * @see ListCell @@ -229,6 +231,7 @@ /** * Creates a default ComboBox instance with the provided items list and * a default {@link #selectionModelProperty() selection model}. + * @param items the list of items */ public ComboBox(ObservableList items) { getStyleClass().add(DEFAULT_STYLE_CLASS); @@ -314,6 +317,7 @@ * Converts the user-typed input (when the ComboBox is * {@link #editableProperty() editable}) to an object of type T, such that * the input may be retrieved via the {@link #valueProperty() value} property. + * @return the converter property */ public ObjectProperty> converterProperty() { return converter; } private ObjectProperty> converter = @@ -341,6 +345,7 @@ * area. If a cell is set here, it does not change the rendering of the * ComboBox popup list - that rendering is controlled via the * {@link #cellFactoryProperty() cell factory} API. + * @return the button cell property * @since JavaFX 2.2 */ public ObjectProperty> buttonCellProperty() { return buttonCell; } @@ -413,6 +418,7 @@ * This Node is shown to the user when the ComboBox has no content to show. * The placeholder node is shown in the ComboBox popup area * when the items list is null or empty. + * @return the placeholder property * @since JavaFX 8.0 */ public final ObjectProperty placeholderProperty() {