Package org.eclipse.rap.rwt.widgets
Interface BrowserCallback
public interface BrowserCallback
This callback interface is used to inform application code that the result of script execution
or evaluation is available.
- Since:
- 2.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
evaluationFailed
(Exception exception) This method is called when the execution of the script failed.void
evaluationSucceeded
(Object result) This method is called when the execution of the script succeeded.
-
Method Details
-
evaluationSucceeded
This method is called when the execution of the script succeeded.- Parameters:
result
- the return value, if any, of executing the script- See Also:
-
evaluationFailed
This method is called when the execution of the script failed.- Parameters:
exception
- the reason for the failing script execution.- See Also:
-