static void |
Application.createFromManifest(java.lang.String manifestUrl,
AsyncCallback<Application> callback,
AckListener listener,
DesktopConnection connection) |
Retrieves application's manifest and returns a wrapped application.
|
void |
Window.executeJavaScript(java.lang.String code,
AsyncCallback<java.lang.Object> callback,
AckListener listener) |
Executes Javascript on the window, restricted to windows you own or windows owned by applications you have created.
|
void |
Window.getBounds(AsyncCallback<WindowBounds> callback,
AckListener listener) |
Gets the current bounds (top, left, width, height) of the window
|
void |
Application.getChildWindows(AsyncCallback<java.util.List<Window>> callback,
AckListener listener) |
Retrieves an list of wrapped fin.desktop.Windows for each of the
application’s child windows
|
void |
Window.getGroup(AsyncCallback<java.util.List<Window>> groupHandler,
AckListener listener) |
Passes a list of wrapped windows in the same group
An empty list is returned if the window is not in a group.
|
void |
Application.getGroups(AsyncCallback<java.util.List<java.util.List<Window>>> groupHandler,
AckListener callback) |
Retrieves an array of active window groups for all of the application's windows.
|
void |
Application.getInfo(AsyncCallback<org.json.JSONObject> callback,
AckListener listener) |
Retrieves information about the application.
|
void |
Window.getInfo(java.lang.String code,
AsyncCallback<org.json.JSONObject> callback,
AckListener listener) |
Gets the window information
|
void |
Window.getOptions(AsyncCallback<WindowOptions> callback,
AckListener listener) |
Returns the current options as stored in the desktop
|
void |
Application.getParentUuid(AsyncCallback<java.lang.String> callback,
AckListener listener) |
Retrieves UUID of the application that launches this application.
|
void |
Application.getTrayIconInfo(AsyncCallback<org.json.JSONObject> callback,
AckListener listener) |
Retrieves information about the custom icon the application previously set in the system tray via setTrayIcon().
|
void |
Window.getZoomLevel(AsyncCallback<java.lang.Double> callback,
AckListener listener) |
Gets the current zoom level of the window
|
void |
Application.isRunning(AsyncCallback<java.lang.Boolean> callback,
AckListener listener) |
Determines if the application is currently running.
|
void |
OpenFinRuntime.launchExternalProcess(java.lang.String path,
java.lang.String commandLine,
AsyncCallback<LaunchExternalProcessResult> callback,
AckListener listener) |
Runs an executable or batch file.
|
void |
OpenFinRuntime.launchExternalProcess(org.json.JSONObject launchConfig,
AsyncCallback<LaunchExternalProcessResult> callback,
AckListener listener) |
Runs an executable or batch file.
|
void |
OpenFinRuntime.terminateExternalProcess(java.lang.String processUuid,
int timeout,
boolean killTree,
AsyncCallback<TerminateExternalProcessResult> callback,
AckListener listener) |
Attempts to cleanly close an external process and terminates it
if the close has not occured after the elapsed timeout in milliseconds.
|