Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package jerp;
  6.  
  7. import gui.GInicio;
  8. import javax.swing.UIManager;
  9.  
  10. /**
  11. *
  12. * @author will
  13. */
  14. public class JERP {
  15.  
  16. /**
  17. * @param args the command line arguments
  18. */
  19. public static void main(String[] args) {
  20. // TODO code application logic her
  21. try {
  22. UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
  23. GInicio gInicio = new gui.GInicio();
  24. gInicio.setVisible(true);
  25. } catch (Exception e) {
  26. System.out.println("ERROR: " + e);
  27. }
  28.  
  29. }
  30. }