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]

