Possible Duplicate:
In java how do I serialize a class that is not marked Serializable?
I am using a custom java class and I am needing to make the class itself serializable since Eclipse is telling me that the class needs this. The problem is however that I do not have the source for this class, only the jar file.
How can I make the object that I am using via importing the jar that contains this object serialiazable, since I do not have the source I cannot simply put in
implements Serializable
I guess you can create a subclass from this class and implement serializable.