KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > beautyj


1 /*
2  * Project: BeautyJ - Customizable Java Source Code Transformer
3  * Class: beautyj
4  * Version: 1.1
5  *
6  * Date: 2004-09-29
7  *
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 Gulden
14  * Email: beautyj@jensgulden.de
15  */

16
17
18 /**
19  * This is a wrapper class for calling de.gulden.application.beautyj.Main.
20  * This allows running BeautyJ by calling "java beautyj {parameters}",
21  * if <BEAUTYJ_HOME>/lib/beautyj.jar has previously been included in the
22  * classpath.
23  *
24  * @author Jens Gulden
25  * @version 1.0
26  */

27 public class beautyj {
28
29     // ------------------------------------------------------------------------
30
// --- static method ---
31
// ------------------------------------------------------------------------
32

33     /**
34      * Passes the call to BeautyJ's main class
35      * de.gulden.application.beautyj.Main.
36      *
37      * @param args The command line arguments passed from the shell.
38      * @see de.gulden.application.beautyj.Main#main
39      */

40     public static void main(String JavaDoc[] args) throws Exception JavaDoc {
41         de.gulden.application.beautyj.Main.main(args);
42     }
43
44 } // end beautyj
45
Popular Tags