Guest User

Untitled

a guest
May 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1.     public void update()
  2.     {
  3.         EditorTextPane.setText("Hi");        
  4.     }
  5.    
  6.    
  7.     /**
  8.      * @param args the command line arguments
  9.      */
  10.     public static void main(String args[]) {
  11.         Timer t1 = new Timer();
  12.        
  13.         t1.schedule(new update, 0, 1000);
  14.        
  15.     }
Add Comment
Please, Sign In to add comment