. */ /** * Plugin to Phing to handle requests for user input. * * @author Stefan Bodewig * @version $Revision: 905 $ * @package phing.input */ interface InputHandler { /** * Handle the request encapsulated in the argument. * *

Precondition: the request.getPrompt will return a non-null * value.

* *

Postcondition: request.getInput will return a non-null * value, request.isInputValid will return true.

* @return void * @throws BuildException */ public function handleInput(InputRequest $request); }