Interface jada.JadaSerializer
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface jada.JadaSerializer

public interface JadaSerializer
extends Object
JadaSerializer interface.
This interface must be implemented by objects which are created for "serialize" other objects to a stream.

Method Index

 o dump(Object, OutputStream)
serialize the object object to the stream os
 o restore(InputStream)
return the object another serializer put into the is stream

Methods

 o dump
  public abstract void dump(Object object,
                            OutputStream os) throws IOException, JadaItemIsNotStreamableException
serialize the object object to the stream os
 o restore
  public abstract Object restore(InputStream is) throws JadaIOException
return the object another serializer put into the is stream

All Packages  Class Hierarchy  This Package  Previous  Next  Index