rt/emul/compacttest/src/test/java/org/apidesign/bck2brwsr/vmtest/impl/HtmlAnnotations.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 19 Nov 2014 19:32:00 +0100
changeset 1723 3a1f262311cf
parent 1635 rt/emul/compact/src/test/java/org/apidesign/bck2brwsr/vmtest/impl/HtmlAnnotations.java@deef1427bbe7
child 1787 ea12a3bb4b33
permissions -rw-r--r--
Separating compact profile tests into own project, so launcher.http can depend on compact profile JAR
     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     @JavaScriptBody(args = {  }, wait4js = false, body = "/* do nothing */")
    58     public static native void empty();
    59     
    60     
    61     protected long chooseLong(boolean takeFirst, boolean takeSecond, long first, long second) {
    62         long l = 0;
    63         if (takeFirst) l += first;
    64         if (takeSecond) l += second;
    65         return l;
    66     }
    67     
    68     protected void onError(Object obj) throws Exception {
    69         callback = obj;
    70     }
    71     
    72     Object getError() {
    73         return callback;
    74     }
    75     
    76     public static Object create() {
    77         return new HtmlAnnotations();
    78     }
    79     @JavaScriptBody(args = { "impl", "a", "b" }, javacall = true, body = 
    80         "return impl.@org.apidesign.bck2brwsr.vmtest.impl.HtmlAnnotations::chooseLong(ZZJJ)(true, false, a, b);"
    81     )
    82     public static native long first(Object impl, long a, long b);
    83     
    84     @JavaScriptBody(args = { "impl", "d" }, javacall = true, body = 
    85         "impl.@org.apidesign.bck2brwsr.vmtest.impl.HtmlAnnotations::onError(Ljava/lang/Object;)(d);" +
    86         "return impl.@org.apidesign.bck2brwsr.vmtest.impl.HtmlAnnotations::getError()();"
    87     )
    88     public static native Double onError(Object impl, Double d);
    89 }