302303304305306307308309310311312
int len = args.length; Window window = ((RhinoInterpreter.ExtendedContext)cx).getWindow(); if (len >= 1) { String message = (String)Context.toType(args[0], String.class); window.alert(message); } } /** * Wraps the 'confirm' method of the Window interface.
307308309310311312313314315316317
WindowWrapper ww = (WindowWrapper)thisObj; Window window = ww.window; if (len >= 1) { String message = (String)Context.jsToJava(args[0], String.class); window.alert(message); } } /** * Wraps the 'confirm' method of the Window interface.