| com.meterware.httpunit.DialogResponder
All known Subclasses: com.meterware.httpunit.DialogAdapter,
DialogResponder | public interface DialogResponder (Code) | | Interface for an object to supply user responses to dialogs.
author: Russell Gold |
Method Summary | |
public boolean | getConfirmation(String confirmationPrompt) Invoked when the user agent needs to display a confirmation dialog. | public String | getUserResponse(String prompt, String defaultResponse) Invoked when the user agent needs to display a generic dialog and obtain a user response. |
getConfirmation | public boolean getConfirmation(String confirmationPrompt)(Code) | | Invoked when the user agent needs to display a confirmation dialog. This method should return true
to accept the proposed action or false to reject it.
|
getUserResponse | public String getUserResponse(String prompt, String defaultResponse)(Code) | | Invoked when the user agent needs to display a generic dialog and obtain a user response. This method
should return the user's answer.
|
|
|