All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----ORG.opengroup.beans.Ready
The intent here is that a Bean will have a nested class which extends Ready, overriding the deserialized method. In the following example example, "Blip!" us printed when TestReady is deserialized:
public class TestReady { Ready ready = new Ready() { public void deserialized() { System.out.println("Blip!"); } }; }
public Ready()
public void deserialized()
All Packages Class Hierarchy This Package Previous Next Index