javax.media.jai.remote
Interface SerializableState

All Superinterfaces:
Serializable

public interface SerializableState
extends Serializable

An interface to be implemented by classes instances of which act as serializable proxies for instances of non-serializable classes.

Since:
JAI 1.1
See Also:
Serializable

Method Summary
 Object getObject()
          Reconstitutes an object from a serializable version of its state wrapped by an implementation of this interface.
 Class getObjectClass()
          Retrieve the class of the object which would be returned by invoking getObject().
 

Method Detail

getObjectClass

public Class getObjectClass()
Retrieve the class of the object which would be returned by invoking getObject().

Returns:
The class of the object which would be returned by getObject().

getObject

public Object getObject()
Reconstitutes an object from a serializable version of its state wrapped by an implementation of this interface.

Returns:
Deserialized form of the state.