Package application.ui

Examples of application.ui.UserInterface


  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());
View Full Code Here

TOP

Related Classes of application.ui.UserInterface

Copyright © 2018 www.massapicom. 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.