ko-bck2brwsr/src/main/java/org/apidesign/html/ko2brwsr/BrwsrCntxtPrvdr.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 01 May 2013 07:06:43 +0200
changeset 1194 3213724a4996
parent 1189 9f8b07dcbe79
permissions -rw-r--r--
Making more things private, removing KOList and providing some fake Javadoc
     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 /** This is an implementation package - just
    29  * include its JAR on classpath and use official {@link Context} API
    30  * to access the functionality.
    31  * <p>
    32  * Provides binding between models and <a href="http://bck2brwsr.apidesign.org">
    33  * Bck2Brwsr</a> VM.
    34  * Registers {@link ContextProvider}, so {@link ServiceLoader} can find it.
    35  *
    36  * @author Jaroslav Tulach <jtulach@netbeans.org>
    37  */
    38 @ServiceProvider(service = ContextProvider.class)
    39 public final class BrwsrCntxtPrvdr implements ContextProvider {
    40     @Override
    41     public Context findContext(Class<?> requestor) {
    42         return bck2BrwsrVM() ? BrwsrCntxt.DEFAULT : null;
    43     }
    44     
    45     @JavaScriptBody(args = {  }, body = "return true;")
    46     private static boolean bck2BrwsrVM() {
    47         return false;
    48     }
    49 }