public interface IFieldUserPromptRespondent
Method Summary | ||
---|---|---|
abstract java.lang.String | respond(java.lang.String promptText, java.lang.String defaultResponse) | |
When implemented, returns a response from the user on prompting. Your implementation should return null to indicate that the user has not responded to the prompt (i.e. the user has pressed the Cancel button in the prompt window). |
Method Detail |
---|
respond | |
public abstract java.lang.String respond(java.lang.String promptText, java.lang.String defaultResponse) |
promptText
- Prompt text (i.e. title of the prompt window).defaultResponse
- Default user response (i.e. initial value contained in the prompt window).