/* * org.openmicroscopy.shoola.Main * *------------------------------------------------------------------------------ * Copyright (C) 2006-2010 University of Dundee. All rights reserved. * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * *------------------------------------------------------------------------------ */ package org.openmicroscopy.shoola; //Java imports //Third-party libraries //Application-internal dependencies import org.openmicroscopy.shoola.env.Container; /** * Application entry point. * This class implements the main method, which gets one or two optional * arguments to specify the path to the installation directory. * <p>If this argument doesn't specify an absolute path, then it'll be * translated into an absolute path. Translation is system dependent -- in * many cases, the path is resolved against the user directory (typically the * directory in which the JVM was invoked).</p> * * @author Jean-Marie Burel      * <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a> * @author <br>Andrea Falconi      * <a href="mailto:a.falconi@dundee.ac.uk"> * a.falconi@dundee.ac.uk</a> * @version 2.2 * <small> * (<b>Internal version:</b> $Revision$ $Date$) * </small> * @since OME2.2 */ public class Main { /** * Main method. * * @param args Optional configuration file and path to the installation * directory. If not specified, then the user directory is * assumed and the <code>container.xml</code> is used. */ public static void main(String[] args) { String homeDir = ""; String configFile = null;//Container.CONFIG_FILE; if (args.length > 0) configFile = args[0]; if (args.length > 1) homeDir = args[1]; Container.startup(homeDir, configFile); } }