Package application.ui

Source Code of application.ui.UserInterface

package application.ui;

import application.database.Database;
import application.ui.MainWindow;

public class UserInterface {
 
  private MainWindow mainWindow;
 
  public void show() {
    mainWindow.showWindow();
  }
 
  public UserInterface(Database db) {
    mainWindow = new MainWindow("ureport",db);
  }
}
TOP

Related Classes of application.ui.UserInterface

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.