01: package org.garret.perst;
02:
03: /**
04: * Interface used to mark objects serialized using custom serializer
05: */
06: public interface CustomSerializable {
07: /**
08: * Get string representation of object. This string representation may be used
09: * by CustomSerailize.parse method to create new instance of this object
10: * @return string representation of object
11: */
12: public String toString();
13: }
|