public class Second extends Thread{ public void run() { while(Main.w) { try { Second.sleep(100); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } Main.time++; Main.text.setText(Main.time/10+"."+Main.time%10+""); } } }