Threads
Hello
I'm creating a thread, eg MyThread thread = new MyThread("FreddyTheThready");.
After running it, I am interrupting it. I want to be able to print out the threads name eg, 'System.out.println( thread.getName + " was interrupted")', So "FreddyTheThready was interrupted", what call to super would I have to do this. If i just call the getName method, it returns numerical value and not the name I gave it.
Thanks.

