public interface Runnable{
void run();
}
runIt( new Runnable(){
void run(){
/* do stuff */
}
});
I want to do this without making the things any complex.
public interface Runnable{
void run();
}
runIt( new Runnable(){
void run(){
/* do stuff */
}
});
I want to do this without making the things any complex.