rt/emul/compact/src/test/java/org/apidesign/bck2brwsr/vmtest/impl/HtmlAnnotations.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 12 Sep 2013 14:15:47 +0200
changeset 1282 8d29792a09c6
child 1635 deef1427bbe7
permissions -rw-r--r--
Updating to recent changes in html.java.net APIs
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.vmtest.impl;
    19 
    20 import net.java.html.js.JavaScriptBody;
    21 import net.java.html.js.JavaScriptResource;
    22 
    23 /**
    24  *
    25  * @author Jaroslav Tulach <jtulach@netbeans.org>
    26  */
    27 @JavaScriptResource("htmlannotations.js")
    28 public class HtmlAnnotations {
    29     private Object callback;
    30     
    31     
    32     @JavaScriptBody(args = {}, body = "return 42;")
    33     public static int fourtyTwo() {
    34         return -1;
    35     }
    36     
    37     @JavaScriptBody(args = { "x", "y" }, body = "return mul(x, y);")
    38     public static native int useExternalMul(int x, int y);
    39     
    40     public static int callback() {
    41         final int[] arr = { 0 };
    42         callback(new Runnable() {
    43             @Override
    44             public void run() {
    45                 arr[0]++;
    46             }
    47         });
    48         return arr[0];
    49     }
    50     
    51     @JavaScriptBody(args = { "r" }, javacall=true, body = "r.@java.lang.Runnable::run()()")
    52     private static native void callback(Runnable r);
    53 
    54     @JavaScriptBody(args = {  }, javacall = true, body = "return @org.apidesign.bck2brwsr.vmtest.impl.HtmlAnnotations::callback()();")
    55     public static native int staticCallback();
    56     
    57     
    58     protected long chooseLong(boolean takeFirst, boolean takeSecond, long first, long second) {
    59         long l = 0;
    60         if (takeFirst) l += first;
    61         if (takeSecond) l += second;
    62         return l;
    63     }
    64     
    65     protected void onError(Object obj) throws Exception {
    66         callback = obj;
    67     }
    68     
    69     Object getError() {
    70         return callback;
    71     }
    72     
    73     public static Object create() {
    74         return new HtmlAnnotations();
    75     }
    76     @JavaScriptBody(args = { "impl", "a", "b" }, javacall = true, body = 
    77         "return impl.@org.apidesign.bck2brwsr.vmtest.impl.HtmlAnnotations::chooseLong(ZZJJ)(true, false, a, b);"
    78     )
    79     public static native long first(Object impl, long a, long b);
    80     
    81     @JavaScriptBody(args = { "impl", "d" }, javacall = true, body = 
    82         "impl.@org.apidesign.bck2brwsr.vmtest.impl.HtmlAnnotations::onError(Ljava/lang/Object;)(d);" +
    83         "return impl.@org.apidesign.bck2brwsr.vmtest.impl.HtmlAnnotations::getError()();"
    84     )
    85     public static native Double onError(Object impl, Double d);
    86 }