MisGastos
Interface Persistent

All Known Implementing Classes:
Gasto

public interface Persistent

A simple interface for building persistent objects on platforms where serialization is not available.


Method Summary
 byte[] persist()
          Called to persist an object.
 void resurrect(byte[] data)
          Called to resurrect a persistent object.
 

Method Detail

persist

public byte[] persist()
               throws java.io.IOException
Called to persist an object.

Throws:
java.io.IOException

resurrect

public void resurrect(byte[] data)
               throws java.io.IOException
Called to resurrect a persistent object.

Throws:
java.io.IOException