Example usage for javax.swing SwingUtilities invokeLater

List of usage examples for javax.swing SwingUtilities invokeLater

Introduction

In this page you can find the example usage for javax.swing SwingUtilities invokeLater.

Prototype

public static void invokeLater(Runnable doRun) 

Source Link

Document

Causes doRun.run() to be executed asynchronously on the AWT event dispatching thread.

Usage

From source file:gtu._work.ui.RegexTestUI.java

/**
 * Auto-generated main method to display this JFrame
 */// w  w  w  .jav  a2s .co  m
public static void main(String[] args) {
    SwingUtilities.invokeLater(new Runnable() {
        public void run() {
            RegexTestUI inst = new RegexTestUI();
            inst.setLocationRelativeTo(null);
            gtu.swing.util.JFrameUtil.setVisible(true, inst);
        }
    });
}

From source file:gtu._work.ui.LoadJspCheckTagUI.java

/**
 * Auto-generated main method to display this JFrame
 *//*from w ww  . j  a  va2  s  .  c om*/
public static void main(String[] args) {
    SwingUtilities.invokeLater(new Runnable() {
        public void run() {
            LoadJspCheckTagUI inst = new LoadJspCheckTagUI();
            inst.setLocationRelativeTo(null);
            gtu.swing.util.JFrameUtil.setVisible(true, inst);
        }
    });
}

From source file:GUI.ListOfOffres1.java

public static void main(final String[] args) {
    SwingUtilities.invokeLater(new Runnable() {

        @Override// w ww . j  ava2  s .com
        public void run() {
            WebLookAndFeel.install();
            WebLookAndFeel.setDecorateAllWindows(true);
            openPleaseWait();
            try {
                openListOfOffresFrame();
            } catch (IOException ex) {
                Logger.getLogger(ListOfOffres1.class.getName()).log(Level.SEVERE, null, ex);
            }
        }
    });
}

From source file:gtu._work.ui.DownloadMoveUI.java

/**
* Auto-generated main method to display this JFrame
*//*from  w w  w  . j  ava 2s .  c o  m*/
public static void main(String[] args) {
    SwingUtilities.invokeLater(new Runnable() {
        public void run() {
            DownloadMoveUI inst = new DownloadMoveUI();
            inst.setLocationRelativeTo(null);
            gtu.swing.util.JFrameUtil.setVisible(true, inst);
        }
    });
}

From source file:GUI.Main.java

public static void main(final String[] args) {
    SwingUtilities.invokeLater(new Runnable() {

        @Override//from  www .  j a va 2 s  . c o  m
        public void run() {
            WebLookAndFeel.install();
            WebLookAndFeel.setDecorateAllWindows(true);

            openPleaseWait();
            try {
                openListOfOffresFrame(null);
            } catch (IOException ex) {

            }
        }
    });
}

From source file:Main.java

public static void main(String[] args) {
    SwingUtilities.invokeLater(() -> {
        Main frame = new Main();
        frame.pack();// w w  w.j ava 2s .c o  m
        frame.setVisible(true);
    });
}

From source file:components.TabComponentsDemo.java

public static void main(String[] args) {
    //Schedule a job for the event dispatch thread:
    //creating and showing this application's GUI.
    SwingUtilities.invokeLater(new Runnable() {
        public void run() {
            //Turn off metal's use of bold fonts
            UIManager.put("swing.boldMetal", Boolean.FALSE);
            new TabComponentsDemo("TabComponentsDemo").runTest();
        }//from  www .ja va2s .c  o m
    });
}

From source file:gtu._work.ui.RenameUI.java

/**
* Auto-generated main method to display this JFrame
*//*from ww  w.j  a  va 2  s .co  m*/
public static void main(String[] args) {
    SwingUtilities.invokeLater(new Runnable() {
        public void run() {
            RenameUI inst = new RenameUI();
            inst.setLocationRelativeTo(null);
            gtu.swing.util.JFrameUtil.setVisible(true, inst);
        }
    });
}

From source file:SafeRepaint.java

public static void main(String[] args) {
    SwingUtilities.invokeLater(new Runnable() {
        public void run() {
            SafeRepaint repaint = new SafeRepaint();
            repaint.setVisible(true);//w  w  w . j  a va2  s.  com
        }
    });
}

From source file:gtu.zcognos.DimensionUI.java

/**
 * Auto-generated main method to display this JFrame
 *///from w  w  w . j  a  v  a 2s  .  c  om
public static void main(String[] args) {
    SwingUtilities.invokeLater(new Runnable() {
        public void run() {
            DimensionUI inst = new DimensionUI();
            inst.setLocationRelativeTo(null);
            gtu.swing.util.JFrameUtil.setVisible(true, inst);
        }
    });
    System.out.println("done...");
}