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 {@link #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 {@link #hasSubmittedText()} and {@link #getSubmittedText()} methods can thenbe 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.