Package jip

Source Code of jip.Main

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package jip;

import swing.form.FormUtil;
import swing.login.LoginForm;
import system.util.LogUtil;
import system.util.Login;

/**
*
* @author laci
*/
public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
    try {
      LogUtil.log("PROGRAM START",Main.class,LogUtil.INFO);
      FormUtil.initLookAndFeel();
      LoginForm form = new LoginForm(new Login());
      form.run();
    } catch (Exception e) {
      LogUtil.log("Main",Main.class,e,LogUtil.ERROR);
    }
    }

}
TOP

Related Classes of jip.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.