< prev index next >

modules/javafx.controls/src/main/java/javafx/scene/control/TextInputDialog.java

Print this page

        

*** 69,78 **** --- 69,79 ---- } /** * 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(); // -- textfield
*** 116,132 **** --- 117,135 ---- * **************************************************************************/ /** * Returns the {@link TextField} used within this dialog. + * @return the {@link TextField} used within this dialog */ public final TextField getEditor() { return textField; } /** * 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; }
< prev index next >