public class TextInputCallback extends java.lang.Object implements Callback, java.io.Serializable
TextInputCallback
to the handle() method of a CallbackHandler to retrieve
generic text information.CallbackHandler,
Serialized Form| Constructor and Description |
|---|
TextInputCallback(java.lang.String prompt)
Construct a
TextInputCallback with a prompt. |
TextInputCallback(java.lang.String prompt,
java.lang.String defaultText)
Construct a
TextInputCallback with a prompt and default
input value. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDefaultText()
Get the default text.
|
java.lang.String |
getPrompt()
Get the prompt.
|
java.lang.String |
getText()
Get the retrieved text.
|
void |
setText(java.lang.String text)
Set the retrieved text.
|
public TextInputCallback(java.lang.String prompt) throws java.lang.IllegalArgumentException
TextInputCallback with a prompt.prompt - the prompt used to request the information.java.lang.IllegalArgumentException - if prompt is null
or if prompt has a length of 0.public TextInputCallback(java.lang.String prompt, java.lang.String defaultText) throws java.lang.IllegalArgumentException
TextInputCallback with a prompt and default
input value.prompt - the prompt used to request the information.defaultText - the text to be used as the default text displayed with
the prompt.java.lang.IllegalArgumentException - if prompt is null,
if prompt has a length of 0, if
defaultText is null or if defaultText
has a length of 0.public java.lang.String getPrompt()
public java.lang.String getDefaultText()
null if this
TextInputCallback was not instantiated with
defaultText.public void setText(java.lang.String text)
text - the retrieved text, which may be null.public java.lang.String getText()
null.