Package ringdb

Source Code of ringdb.Main

package ringdb;

import java.util.logging.Level;
import java.util.logging.Logger;

import ringdb.database.Database;
import ringdb.ui.MainWindow;

public class Main {

  private static Logger s_Logger = Logger.getLogger(Database.class.getPackage().getName());

  /**
   * Entry point for application.
   *
   * @param pr_Arguments (none expected)
   */
  public static void main(final String[] pr_Arguments) {
   
    s_Logger.log(Level.INFO, "Starting Database");
    Database.getInstance();
       
        s_Logger.log(Level.INFO, "Starting UI");
    new MainWindow().setVisible(true);
  }

}
TOP

Related Classes of ringdb.Main

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.