All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----java.lang.Thread | +----ORG.opengroup.beans.ReadyThread
The intent here is that a Bean will have a nested class which extends ReadyThread, overriding the run method. For example:
public class TestReadyThread implements Serializable { Thread runner= new ReadyThread() { public void run() { System.out.println("Blip!"); } }; }
public ReadyThread()
All Packages Class Hierarchy This Package Previous Next Index