KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jac > samples > bank > Run


1 package org.objectweb.jac.samples.bank;
2
3 /**
4  * The default launcher for the bank program.<p>
5  *
6  * It creates a root account manager that creates a bank with the 1
7  * number.<p>
8  *
9  * @see AccountManager
10  * @see Bank
11  *
12  * @author <a HREF="mailto:maxime@aopsys.com">Maxime Pawlak</a>
13  * @author <a HREF="mailto:pawlak@cnam.fr">Renaud Pawlak</a>
14  */

15 public class Run {
16
17     /**
18      * The program entry point.<p>
19      *
20      * @param args the command-line parameters (unused)
21      */

22     public static void main(String JavaDoc[] args) {
23         am = new AccountManager();
24     }
25     static AccountManager am;
26 }
27
Popular Tags