/*
* 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);
}
}
}