| com.jeta.forms.store.JETAPersistable
All known Subclasses: com.jeta.forms.store.AbstractJETAPersistable,
JETAPersistable | public interface JETAPersistable extends Externalizable(Code) | | Defines an interface that all persitable objects in the forms designer must
implement. It is similar to Exernalizable except that it adds read/write
methods that take JETAObjectInput and JETAObjectOutput. This is needed so
that our 'Serializable' objects can be stored using an arbitrary persistence
scheme. Currently, we support standard Java Serialization and XML. Using this
approach, it would be easy to added support for any other type of format.
author: Jeff Tassin |
write | public void write(JETAObjectOutput out) throws IOException(Code) | | Objects implement this method to store their state. Primitives and
objects can be written using the JETAObjectOutput instance.
|
|
|