KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > base > tool > Main


1 /*
2  * Created on Jul 19, 2005
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package org.enhydra.base.tool;
8
9 /**
10  * @author slobodan
11  *
12  * TODO To change the template for this generated type comment go to
13  * Window - Preferences - Java - Code Style - Code Templates
14  */

15 public class Main {
16
17     public static void main(String JavaDoc[] args) {
18         String JavaDoc enhydraDir = null;
19         WizardFrame wf = null;
20         if (args.length>0){
21             enhydraDir = args[0];
22             wf = new WizardFrame(enhydraDir);
23         } else {
24             wf = new WizardFrame();
25         }
26         wf.show();
27     }
28 }
29
Popular Tags