why doesn't the following code add a label?
public class LabelTester implements Runnable{
Label l=new Label("asdfd");
Thread t;
public void init()
{
add(l);
t=new Thread(this);
t.start();
}
public void run()
{
for(int i=0;;i++)
l.setText(String.valueOf(i));
}
}
what should it do according to u?