Package application

Source Code of application.Application

package application;


import application.database.Database;
import application.ui.UserInterface;

public class Application {
 
 
  public Database db;
  public UserInterface ui;
 
  public void run() {
    try {
      db = new Database("test.db");
      ui = new UserInterface(db);
     
      ui.show();
           
    } catch (Exception e) {
      System.err.println(e.getClass().getName()+": "+e.getMessage());
    }
  }


}
TOP

Related Classes of application.Application

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.