When we develop a class in java, the decision of whether you should make the class serializable or not is usually simple. If the class represents a model object that may be transferred across the n/w, it should be serializable.
Is this reasoning correct?
If so, what is the logic behind some of native Java API classes being serializable while others are not?
From this list of native classes that implement Serilizable, it appears that there is more than one reason to implement serializable.
http://download.oracle.com/javase/6/docs/api/java/io/class-use/Serializable.html
Any clarifications would be appreciated.