Advertisement
Guest User

Xupa corinthians

a guest
Nov 28th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.55 KB | None | 0 0
  1. public void  piscaVermelho()  
  2.      {  
  3.             jButton1.setBackground(Color.black);
  4.             java.awt.EventQueue.invokeLater(new Runnable()  
  5.             {              
  6.                 public void run()  
  7.                 {  
  8.                     try  
  9.                     {  
  10.                         Thread.sleep(200);  //Pausa a tela por meio segundo    
  11.                     }  
  12.                     catch (InterruptedException ie)  
  13.                     {
  14.                                
  15.                     }  
  16.                       jButton1.setBackground(Color.red);  
  17.                   }  
  18.             });  
  19.      }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement