--- /dev/null
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package resumebuilder;
+
+import java.util.logging.Level;
+import java.util.logging.Logger;
+import javax.swing.UnsupportedLookAndFeelException;
+
+/**
+ *
+ * @author hari
+ */
+public class ResumeBuilder {
+
+ /**
+ * @param args the command line arguments
+ */
+ public static void main(String[] args) {
+ try {
+ javax.swing.UIManager.setLookAndFeel(javax.swing.UIManager.getSystemLookAndFeelClassName());
+ } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
+ Logger.getLogger(ResumeBuilder.class.getName()).log(Level.SEVERE, null, ex);
+ }
+ // TODO code application logic here
+ ResumeBuilderMain builder = new ResumeBuilderMain ();
+ builder.setVisible(true);
+ }
+
+}