Main.java 890 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Main.java
  3. *
  4. * Created on 26. Juli 2007, 06:10
  5. *
  6. * To change this template, choose Tools | Template Manager
  7. * and open the template in the editor.
  8. */
  9. package schemaspygui;
  10. /**
  11. *
  12. * @author joachim uhl; mailto:admin@joachim-uhl.de;
  13. * http://www.joachim-uhl.de/projekte/schemaspygui/
  14. */
  15. public class Main {
  16. /** Creates a new instance of Main */
  17. public Main() {
  18. }
  19. /**
  20. * @param args the command line arguments
  21. */
  22. public static void main(String[] args) {
  23. java.awt.EventQueue.invokeLater(new Runnable() {
  24. public void run() {
  25. SchemaSpyGUIApp gui = new SchemaSpyGUIApp();
  26. //gui.setLocation(25,25);
  27. // Center the GUI
  28. gui.setLocationRelativeTo(null);
  29. gui.setVisible(true);
  30. }
  31. });
  32. }
  33. }