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 SummaryModifier and TypeMethodDescriptionvoidevaluationFailed(Exception exception) This method is called when the execution of the script failed.voidevaluationSucceeded(Object result) This method is called when the execution of the script succeeded.
- 
Method Details- 
evaluationSucceededThis method is called when the execution of the script succeeded.- Parameters:
- result- the return value, if any, of executing the script
- See Also:
 
- 
evaluationFailedThis method is called when the execution of the script failed.- Parameters:
- exception- the reason for the failing script execution.
- See Also:
 
 
-