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 17 * number.<p>8 *9 * @see AccountManager10 * @see Bank11 *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 [] args) {23 am = new AccountManager();24 }25 static AccountManager am;26 }27