jaroslav@1066: /** jaroslav@1066: * Back 2 Browser Bytecode Translator jaroslav@1787: * Copyright (C) 2012-2015 Jaroslav Tulach jaroslav@1066: * jaroslav@1066: * This program is free software: you can redistribute it and/or modify jaroslav@1066: * it under the terms of the GNU General Public License as published by jaroslav@1066: * the Free Software Foundation, version 2 of the License. jaroslav@1066: * jaroslav@1066: * This program is distributed in the hope that it will be useful, jaroslav@1066: * but WITHOUT ANY WARRANTY; without even the implied warranty of jaroslav@1066: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the jaroslav@1066: * GNU General Public License for more details. jaroslav@1066: * jaroslav@1066: * You should have received a copy of the GNU General Public License jaroslav@1066: * along with this program. Look for COPYING file in the top folder. jaroslav@1066: * If not, see http://opensource.org/licenses/GPL-2.0. jaroslav@1066: */ jaroslav@1066: package org.apidesign.bck2brwsr.launcher.b2b; jaroslav@1066: jaroslav@1066: import java.awt.Desktop; jaroslav@1066: import org.apidesign.bck2brwsr.launcher.Launcher; jaroslav@1066: jaroslav@1066: /** This is a launcher for the Bck2Brwsr jaroslav@1066: * project that is using {@link Desktop} (or {@link Process}) to display the jaroslav@1066: * external browser in separate process. Use {@link Launcher} methods to access this jaroslav@1066: * functionality via public, supported methods. jaroslav@1066: * jaroslav@1066: * @author Jaroslav Tulach jaroslav@1066: */ jaroslav@1066: public final class LauncherBck2Brwsr { jaroslav@1066: private LauncherBck2Brwsr() { jaroslav@1066: } jaroslav@1066: }