--- old/modules/javafx.controls/src/main/java/javafx/scene/control/Spinner.java 2017-03-09 14:44:30.366173781 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/Spinner.java 2017-03-09 14:44:30.262173779 -0800 @@ -67,16 +67,12 @@ * {@link #valueFactoryProperty() value factory property}. SpinnerValueFactory * classes for some common types are provided with JavaFX, including: * - *
- * * * - *
- * *

A Spinner has a TextField child component that is responsible for displaying * and potentially changing the current {@link #valueProperty() value} of the * Spinner, which is called the {@link #editorProperty() editor}. By default the @@ -573,6 +569,7 @@ // --- editor /** * The editor used by the Spinner control. + * @return the editor property */ public final ReadOnlyObjectProperty editorProperty() { if (editor == null) { @@ -594,6 +591,7 @@ /** * The prompt text to display in the {@code Spinner}, or * {@code null} if no prompt text is displayed. + * @return the prompt text property * @since 9 */ public final StringProperty promptTextProperty() { return getEditor().promptTextProperty(); }