launcher/http/src/main/java/org/apidesign/bck2brwsr/launcher/b2b/LauncherBck2Brwsr.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 30 Apr 2013 16:24:28 +0200
changeset 1066 6792dc0bafb9
child 1787 ea12a3bb4b33
permissions -rw-r--r--
All launchers need to have a javadoc
jaroslav@1066
     1
/**
jaroslav@1066
     2
 * Back 2 Browser Bytecode Translator
jaroslav@1066
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@1066
     4
 *
jaroslav@1066
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@1066
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@1066
     7
 * the Free Software Foundation, version 2 of the License.
jaroslav@1066
     8
 *
jaroslav@1066
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@1066
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@1066
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@1066
    12
 * GNU General Public License for more details.
jaroslav@1066
    13
 *
jaroslav@1066
    14
 * You should have received a copy of the GNU General Public License
jaroslav@1066
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@1066
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@1066
    17
 */
jaroslav@1066
    18
package org.apidesign.bck2brwsr.launcher.b2b;
jaroslav@1066
    19
jaroslav@1066
    20
import java.awt.Desktop;
jaroslav@1066
    21
import org.apidesign.bck2brwsr.launcher.Launcher;
jaroslav@1066
    22
jaroslav@1066
    23
/** This is a launcher for the <a href="http://bck2brwsr.apidesign.org">Bck2Brwsr</a>
jaroslav@1066
    24
 * project that is using {@link Desktop} (or {@link Process}) to display the 
jaroslav@1066
    25
 * external browser in separate process. Use {@link Launcher} methods to access this
jaroslav@1066
    26
 * functionality via public, supported methods.
jaroslav@1066
    27
 *
jaroslav@1066
    28
 * @author Jaroslav Tulach
jaroslav@1066
    29
 */
jaroslav@1066
    30
public final class LauncherBck2Brwsr {
jaroslav@1066
    31
    private LauncherBck2Brwsr() {
jaroslav@1066
    32
    }
jaroslav@1066
    33
}