ko-bck2brwsr/src/main/java/org/apidesign/html/ko2brwsr/BrwsrCntxtPrvdr.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 29 Apr 2013 12:50:19 +0200
changeset 1189 9f8b07dcbe79
child 1194 3213724a4996
permissions -rw-r--r--
Putting the bck2brwsr bindings into html.java.net repository
     1 /**
     2  * HTML via Java(tm) Language Bindings
     3  * Copyright (C) 2013 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. apidesign.org
    13  * designates this particular file as subject to the
    14  * "Classpath" exception as provided by apidesign.org
    15  * in the License file that accompanied this code.
    16  *
    17  * You should have received a copy of the GNU General Public License
    18  * along with this program. Look for COPYING file in the top folder.
    19  * If not, see http://wiki.apidesign.org/wiki/GPLwithClassPathException
    20  */
    21 package org.apidesign.html.ko2brwsr;
    22 
    23 import net.java.html.json.Context;
    24 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    25 import org.apidesign.html.json.spi.ContextProvider;
    26 import org.openide.util.lookup.ServiceProvider;
    27 
    28 /**
    29  *
    30  * @author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    31  */
    32 @ServiceProvider(service = ContextProvider.class)
    33 public final class BrwsrCntxtPrvdr implements ContextProvider {
    34     @Override
    35     public Context findContext(Class<?> requestor) {
    36         return bck2BrwsrVM() ? BrwsrCntxt.DEFAULT : null;
    37     }
    38     
    39     @JavaScriptBody(args = {  }, body = "return true;")
    40     private static boolean bck2BrwsrVM() {
    41         return false;
    42     }
    43 }