public class DefaultInputHandler extends java.lang.Object implements InputHandler
Constructor and Description |
---|
DefaultInputHandler()
Empty no-arg constructor
|
Modifier and Type | Method and Description |
---|---|
protected java.io.InputStream |
getInputStream()
Returns the input stream from which the user input should be read.
|
protected java.lang.String |
getPrompt(InputRequest request)
Constructs user prompt from a request.
|
void |
handleInput(InputRequest request)
Prompts and requests input.
|
public void handleInput(InputRequest request) throws BuildException
handleInput
in interface InputHandler
request
- the request to handleBuildException
- if not possible to read from consoleprotected java.lang.String getPrompt(InputRequest request)
This implementation adds (choice1,choice2,choice3,...) to the
prompt for MultipleChoiceInputRequest
s.
request
- the request to construct the prompt for.
Must not be null
.protected java.io.InputStream getInputStream()