Package moneymanager.main

Source Code of moneymanager.main.MoneyManager

/*
* Author: Brandon Quinn
* Copyright (c) 2014 - Brandon Quinn
*/

package moneymanager.main;

import javax.swing.UIManager;
import moneymanager.gui.MainWindow;

public class MoneyManager {
 
  static IncrementManager manager = new IncrementManager();
 
  public static void main(String args[]) {
   
    try {
     
      UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
     
    } catch(Exception e) {
     
      e.printStackTrace();
     
    }
   
    MainWindow mainInterface = new MainWindow();
    mainInterface.setVisible(true);
  }
}
TOP

Related Classes of moneymanager.main.MoneyManager

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.