[jboss-user] [Javassist user questions] - Re: please help!!!
Panzer_Kavalier
do-not-reply at jboss.com
Sat Aug 19 06:42:27 EDT 2006
Another case!!!
Class Test implements Runnable
{
Thread tt = null;
public void one(){
{
System.out.println("Thread start");
tt = new Thread(this);
tt.start();
}
}
--------------------------------------------
I want to change the above code to this:
Class Test implements Runnable
{
MyThread tt = null;
public void one(){
{
System.out.println("Thread start");
tt = new MyThread(this);
tt.start();
}
}
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966230#3966230
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966230
More information about the jboss-user
mailing list