Main
[resumebuilderjava.git] / src / resumebuilder / ResumeBuilder.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 resumebuilder;
7
8 import java.util.logging.Level;
9 import java.util.logging.Logger;
10 import javax.swing.UnsupportedLookAndFeelException;
11
12 /**
13 *
14 * @author hari
15 */
16 public class ResumeBuilder {
17
18 /**
19 * @param args the command line arguments
20 */
21 public static void main(String[] args) {
22 try {
23 javax.swing.UIManager.setLookAndFeel(javax.swing.UIManager.getSystemLookAndFeelClassName());
24 } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
25 Logger.getLogger(ResumeBuilder.class.getName()).log(Level.SEVERE, null, ex);
26 }
27 // TODO code application logic here
28 ResumeBuilderMain builder = new ResumeBuilderMain ();
29 builder.setVisible(true);
30 }
31
32 }