1 /*2 * Project: BeautyJ - Customizable Java Source Code Transformer3 * Class: de.gulden.application.beautyj.Main4 * Version: 1.15 *6 * Date: 2004-09-297 *8 * Note: Contains auto-generated Javadoc comments created by BeautyJ.9 * 10 * This is licensed under the GNU General Public License (GPL)11 * and comes with NO WARRANTY. See file license.txt for details.12 *13 * Author: Jens Gulden14 * Email: beautyj@jensgulden.de15 */16 17 package de.gulden.application.beautyj;18 19 import de.gulden.framework.amoda.environment.gui.GUIApplicationEnvironment;20 21 /**22 * Main class to invoke BeautyJ.23 * 24 * @author Jens Gulden25 * @version 1.126 */27 public class Main {28 29 // ------------------------------------------------------------------------30 // --- static method ---31 // ------------------------------------------------------------------------32 33 /**34 * Invokes the application inside a GUIApplicationEnvironment.35 * As BeautyJ actually is an instance of CommandLineApplication only,36 * this enables use of auto-gui generation.37 * BeautyJ sets no-gui mode as default, so use parameter -gui38 * to use auto-gui.39 * 40 * @see de.gulden.framework.amoda.environment.commandline.CommandLineApplication#run(String[])41 * @see de.gulden.framework.amoda.generic.core.GenericApplication#run()42 */43 public static void main(String [] args) throws Exception {44 GUIApplicationEnvironment.invoke(BeautyJ.class, args);45 }46 47 } // end Main48