public interface OpenExternalAppCallback extends BrowserAsyncCallback<OpenExternalAppCallback.Params,OpenExternalAppCallback.Action>
In this callback you can display a modal dialog with the localized message that you can get
from the callback OpenExternalAppCallback.Params
.
Use the OpenExternalAppCallback.Action.open()
method to tell the browser that the link should be opened in
the associated external application. If the application is not running, the operating system
should launch the application and open the link in it.
If the callback throws an exception, the OpenExternalAppCallback.Action.cancel()
method will be invoked.
Modifier and Type | Interface and Description |
---|---|
static class |
OpenExternalAppCallback.Action
An action providing a response to the
OpenExternalAppCallback . |
static interface |
OpenExternalAppCallback.Params
The parameters of the
OpenExternalAppCallback . |
on