What does the Serializable interface do?
Location: http://www.jguru.com/faq/view.jsp?EID=454508 Created: Jul 13, 2001 Modified: 2001-07-13 15:01:10.018 Author: Tim Rohaly (http://www.jguru.com/guru/viewbio.jsp?EID=10) Question originally posed by Ramamurthy K (http://www.jguru.com/guru/viewbio.jsp?EID=453334 Serializable is a tagging interface; it prescribes no methods. It serves to assign the Serializable data type to the tagged class and to identify the class as one which the developer has designed for persistence. ObjectOutputStream serializes only those objects which implement this interface. Please refer to http://www.jguru.com/faq/view.jsp?EID=31434 and the other Serialization FAQs for more information.