Reporting Functionality - added some report
[habeas.git] / src / habeas / Habeas.java
1 /*
2 * To change this license header, choose License Headers in Project Properties.
3 * To change this template file, choose Tools | Templates
4 * and open the template in the editor.
5 */
6 package habeas;
7
8 import java.util.logging.Level;
9 import java.util.logging.Logger;
10 import javax.swing.UIManager;
11 import javax.swing.UnsupportedLookAndFeelException;
12
13 /**
14 *
15 * @author hari
16 */
17 public class Habeas {
18
19 /**
20 * @param args the command line arguments
21 */
22 public static void main(String[] args) {
23 // TODO code application logic here
24 Utility.retrieveConnectionURL();
25 Utility.retrieveStationerySettings();
26
27 try {
28 UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
29 } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
30 Logger.getLogger(Habeas.class.getName()).log(Level.SEVERE, null, ex);
31 }
32 MainFrame frame = new MainFrame ();
33 frame.setVisible(true);
34 }
35
36 }