|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface UIInputReceiver
This interface provides a mechanism to get some textual input from a user.
There are various methods which allow you to customise the appearance of the prompt that the user receives - subclasses may provide additional methods to customise the interface too.
Once the object has been set up, you then call the prompt()
method. This
will ask the user for some input based on the values previously given.
It will only return once the user has either given some validated input,
or has indicated they don't want to give any input (like pressing a
Cancel button).
The #hasSubmittedText()
and #getSubmittedText()
methods can then
be invoked to retrieve the input (if the user has submitted any).
There are various methods which have a setXXX and setLocalisedXXX counterparts. The setXXX methods will attempt to translate the given string to a localised representation of it - the setLocalisedXXX method will assume that the localisation has already been done, and leave it intact.
Note: Only for implementation by Azureus, not plugins.
Method Summary | |
---|---|
void |
allowEmptyInput(boolean empty_input)
Indicates whether blank input can be entered. |
String |
getSubmittedInput()
Returns the string if the user submitted any data - you should check for this by calling hasSubmittedInput() first. |
boolean |
hasSubmittedInput()
Returns true if the user submitted any data. |
void |
maintainWhitespace(boolean keep_whitespace)
Indicates whether to keep whitespace are kept when input is entered, or whether to strip it out. |
void |
prompt()
Deprecated. Use prompt(UIInputReceiverListener) |
void |
prompt(UIInputReceiverListener receiver_listener)
This prompts the user for input and returns immediately. |
void |
setInputValidator(UIInputValidator validator)
Sets the UIInputValidator for this object. |
void |
setLocalisedMessage(String message)
Sets the message to display for the text entry input. |
void |
setLocalisedMessages(String[] messages)
Sets the message to display for the text entry input. |
void |
setLocalisedTitle(String title)
Sets the title for the text entry input. |
void |
setMessage(String message)
Sets the message to display for the text entry input. |
void |
setMessages(String[] messages)
Sets the message to display for the text entry input. |
void |
setMultiLine(boolean multiline)
Indicates whether to allow multi-line input. |
void |
setPreenteredText(String text,
boolean as_suggested)
This sets a value to be displayed as pre-entered text for the input. |
void |
setTextLimit(int limit)
set the maximum number of characters the user can type |
void |
setTitle(String title)
Sets the title for the text entry input. |
Method Detail |
---|
void setTitle(String title)
void setLocalisedTitle(String title)
void setMessage(String message)
For multiple lines, see setMessages(java.lang.String[])
.
void setLocalisedMessage(String message)
For multiple lines, see setLocalisedMessages(java.lang.String[])
.
void setMessages(String[] messages)
The value passed here will be an array of strings - each string will be usually outputted on its own line. The last value in the array will usually be the message displayed closest to the users prompt.
void setLocalisedMessages(String[] messages)
The value passed here will be an array of strings - each string will be usually outputted on its own line. The last value in the array will usually be the message displayed closest to the users prompt.
void setPreenteredText(String text, boolean as_suggested)
The text may appear in the same location as the text should be entered (allowing it to be directly overwritten or submitted immediately) - but some interfaces may not support this.
A flag should be passed indicating whether the pre-entered text is being entered as a suggestion for a value, or whether it is an old value being currently stored. Some interfaces may choose to differentiate between the two.
text
- The text to pre-enter.as_suggested
- true if the value is a suggested
input value, false if it is an old value.void setMultiLine(boolean multiline)
void maintainWhitespace(boolean keep_whitespace)
void allowEmptyInput(boolean empty_input)
void setInputValidator(UIInputValidator validator)
By default, there is no input validator associated with a UIInputReceiver, meaning all input is allowed.
UIInputValidator
@Deprecated void prompt()
prompt(UIInputReceiverListener)
void prompt(UIInputReceiverListener receiver_listener)
UIInputReceiverListener
will
be triggered
receiver_listener
- boolean hasSubmittedInput()
String getSubmittedInput()
hasSubmittedInput()
first.
void setTextLimit(int limit)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |