Reporting Functionality - added some report
[habeas.git] / src / habeas / Habeas.java
index ae8052b..bf5b72c 100644 (file)
@@ -22,13 +22,13 @@ public class Habeas {
     public static void main(String[] args) {
         // TODO code application logic here
         Utility.retrieveConnectionURL();
+        Utility.retrieveStationerySettings();
         
         try {
-            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
+            UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
         } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
             Logger.getLogger(Habeas.class.getName()).log(Level.SEVERE, null, ex);
         }
-        
         MainFrame frame = new MainFrame ();
         frame.setVisible(true);
     }