javaquery/demo-twitter/src/main/java/org/apidesign/bck2brwsr/demo/twitter/Main.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 15 Apr 2013 20:47:42 +0200
branchfx
changeset 991 a28d8ee85ba9
permissions -rw-r--r--
Modifying the Twitter example to run in FX Web View
jaroslav@991
     1
/**
jaroslav@991
     2
 * Back 2 Browser Bytecode Translator
jaroslav@991
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@991
     4
 *
jaroslav@991
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@991
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@991
     7
 * the Free Software Foundation, version 2 of the License.
jaroslav@991
     8
 *
jaroslav@991
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@991
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@991
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@991
    12
 * GNU General Public License for more details.
jaroslav@991
    13
 *
jaroslav@991
    14
 * You should have received a copy of the GNU General Public License
jaroslav@991
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@991
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@991
    17
 */
jaroslav@991
    18
jaroslav@991
    19
package org.apidesign.bck2brwsr.demo.twitter;
jaroslav@991
    20
jaroslav@991
    21
import java.io.IOException;
jaroslav@991
    22
import org.apidesign.bck2brwsr.launcher.Launcher;
jaroslav@991
    23
jaroslav@991
    24
/**
jaroslav@991
    25
 *
jaroslav@991
    26
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@991
    27
 */
jaroslav@991
    28
class Main {
jaroslav@991
    29
    public static void main(String... args) throws IOException {
jaroslav@991
    30
        Launcher.showURL(ClassLoader.getSystemClassLoader(), "org/apidesign/bck2brwsr/demo/twitter/index.html");
jaroslav@991
    31
    }
jaroslav@991
    32
    
jaroslav@991
    33
}