--- old/modules/javafx.controls/src/main/java/javafx/scene/control/TextInputDialog.java 2017-03-09 14:44:37.334173904 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/TextInputDialog.java 2017-03-09 14:44:37.222173902 -0800 @@ -71,6 +71,7 @@ /** * Creates a new TextInputDialog with the default value entered into the * dialog {@link TextField}. + * @param defaultValue the default value entered into the dialog */ public TextInputDialog(@NamedArg("defaultValue") String defaultValue) { final DialogPane dialogPane = getDialogPane(); @@ -118,6 +119,7 @@ /** * Returns the {@link TextField} used within this dialog. + * @return the {@link TextField} used within this dialog */ public final TextField getEditor() { return textField; @@ -125,6 +127,7 @@ /** * Returns the default value that was specified in the constructor. + * @return the default value that was specified in the constructor */ public final String getDefaultValue() { return defaultValue;