Can I inform to the aplicacion form Runnable?

I have an application that runs a Runnable like this. The runnable calls some method each 5 seconds perfectly, but i want that the general aplication (the main thread that runs the application) was noticed. Because the execution of runnable continues without problems but the application is not notified.

[code]miRunnable = new Runnable(){

public void run(){

wait(5000);

//call to some methods

Thread.currentThread().run();

}

};

threadAux = new Thread (miRunnable);

threadAux.start();[/code]

[553 byte] By [davilinra] at [2007-11-26 12:23:52]
# 1
I'd suggest to post this question to another forum, like this one: http://forum.java.sun.com/forum.jspa?forumID=534
MaximKartasheva at 2007-7-7 15:24:25 > top of Java-index,Development Tools,Solaris and Linux Development Tools...