All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class ORG.opengroup.beans.Ready

java.lang.Object
    |
    +----ORG.opengroup.beans.Ready

public class Ready
extends Object
implements Serializable
Ready will call method deserialized when the object is deserialized.

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!");
}
};
}


Constructor Index

 o Ready()

Method Index

 o deserialized()

Constructors

 o Ready
public Ready()

Methods

 o deserialized
public void deserialized()

All Packages  Class Hierarchy  This Package  Previous  Next  Index