1 /*
   2  * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.nashorn.api.scripting.test;
  27 
  28 import java.util.Map;
  29 import javax.script.Bindings;
  30 import jdk.nashorn.api.scripting.JSObject;
  31 import jdk.nashorn.api.scripting.ScriptObjectMirror;
  32 
  33 @SuppressWarnings("javadoc")
  34 public class Window {
  35 
  36     private String location = "http://localhost:8080/window";
  37 
  38     private WindowEventHandler onload   = null;
  39 
  40     public void alert(final String message) {
  41         System.out.println("alert: " + message);
  42     }
  43 
  44     public String getLocation() {
  45         return location;
  46     }
  47 
  48     public void setLocation(final String location) {
  49         this.location = location;
  50     }
  51 
  52     public String item(final int index) {
  53         return Integer.toHexString(index);
  54     }
  55 
  56     public WindowEventHandler getOnload() {
  57         return onload;
  58     }
  59 
  60     public void setOnload(final WindowEventHandler onload) {
  61         this.onload = onload;
  62     }
  63 
  64     public static int setTimeout(final Window self, final String code, final int delay) {
  65         return self.setTimeout(code, delay);
  66     }
  67 
  68     public int setTimeout(final String code, final int delay) {
  69         System.out.println("window.setTimeout: " + delay + ", code: " + code);
  70         return 0;
  71     }
  72 
  73     public static Object funcJSObject(final JSObject jsobj) {
  74         return jsobj.getMember("foo");
  75     }
  76 
  77     public static Object funcScriptObjectMirror(final ScriptObjectMirror sobj) {
  78         return sobj.get("foo");
  79     }
  80 
  81     public static Object funcMap(final Map<?,?> map) {
  82         return map.get("foo");
  83     }
  84 
  85     public static Object funcBindings(final Bindings bindings) {
  86         return bindings.get("foo");
  87     }
  88 }