Swing and threads: invoke later : Swing Thread « Threads « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Collections Data Structure
8. Database SQL JDBC
9. Design Pattern
10. Development Class
11. Email
12. Event
13. File Input Output
14. Game
15. Hibernate
16. J2EE
17. J2ME
18. JDK 6
19. JSP
20. JSTL
21. Language Basics
22. Network Protocol
23. PDF RTF
24. Regular Expressions
25. Security
26. Servlets
27. Spring
28. Swing Components
29. Swing JFC
30. SWT JFace Eclipse
31. Threads
32. Tiny Application
33. Velocity
34. Web Services SOA
35. XML
Microsoft Office Word 2007 Tutorial
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java » Threads » Swing ThreadScreenshots 
Swing and threads: invoke later
Swing and threads: invoke later


import java.awt.FlowLayout;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;

public class InvokeLaterDemo extends Object {
  private static void print(String msg) {
    String name = Thread.currentThread().getName();
    System.out.println(name + ": " + msg);
  }

  public static void main(String[] args) {
    final JLabel label = new JLabel("--------");

    JPanel panel = new JPanel(new FlowLayout());
    panel.add(label);

    JFrame f = new JFrame();
    f.setContentPane(panel);
    f.setSize(300100);
    f.setVisible(true);

    try {
      print("sleeping for 3 seconds");
      Thread.sleep(3000);
    catch (InterruptedException ix) {
      print("interrupted while sleeping");
    }

    print("creating code block for event thread");
    Runnable setTextRun = new Runnable() {
      public void run() {
        try {
          Thread.sleep(500);
          print("about to do setText()");
          label.setText("New text!");
        catch (Exception x) {
          x.printStackTrace();
        }
      }
    };

    print("call invokeLater()");
    SwingUtilities.invokeLater(setTextRun);
    print("return from invokeLater()");
  }
}

           
       
Related examples in the same category
1. Is Event Dispatcher ThreadIs Event Dispatcher Thread
2. GUI clock
3. Race Conditions using Swing ComponentsRace Conditions using Swing Components
4. Eliminating race Conditions using Swing ComponentsEliminating race Conditions using Swing Components
5. Using the Runnable interfaceUsing the Runnable interface
6. Write your Beans this way so they can run in a multithreaded environmentWrite your Beans this way so they can run in a multithreaded environment
7. User interface responsiveness
8. InvokeExample: Swing and threadInvokeExample: Swing and thread
9. Counter: Swing and threadCounter: Swing and thread
10. Thread accuracy: Swing and threadsThread accuracy: Swing and threads
11. Swing and thread: invoke and waitSwing and thread: invoke and wait
12. Swing and threads: slideSwing and threads: slide
13. Swing and threads: scroll textSwing and threads: scroll text
14. Animation: Swing and threadAnimation: Swing and thread
15. Swing and Thread for length operationSwing and Thread for length operation
16. Swing and Thread: cancel a lengthy operationSwing and Thread: cancel a lengthy operation
17. Swing and Thread: repaintSwing and Thread: repaint
18. Swing Thread Test
19. Thread and Swing 1Thread and Swing 1
20. Thread and Swing 2Thread and Swing 2
21. Thread and Swing 3Thread and Swing 3
22. Swing Type Tester 10Swing Type Tester 10
w___w___w.__j_a___va_2__s___.___c_o_m__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.