@PatchMethod static void print() { WindowOperationsHandler handler = GwtConfig.get().getWindowOperationsHandler(); if (handler != null) { handler.print(); } }
@PatchMethod static void open(String url, String name, String features) { WindowOperationsHandler handler = GwtConfig.get().getWindowOperationsHandler(); if (handler != null) { handler.open(url, name, features); } }
@PatchMethod static void alert(String msg) { WindowOperationsHandler handler = GwtConfig.get().getWindowOperationsHandler(); if (handler != null) { handler.alert(msg); } }
@PatchMethod static String prompt(String msg, String initialValue) { WindowOperationsHandler handler = GwtConfig.get().getWindowOperationsHandler(); if (handler != null) { return handler.prompt(msg, initialValue); } return null; }
@PatchMethod static boolean confirm(String msg) { WindowOperationsHandler handler = GwtConfig.get().getWindowOperationsHandler(); if (handler != null) { return handler.confirm(msg); } return false; }