I understand that it just saves the state of an object, but in what classes should I implement this interface?
For example, suppose that you have 4 classes A, B, C, D:
abstract class A { ... }
class B extends A { ... }
class C extends A { ... }
D is the class where the objects of A and B are created and manipulated:
class D { A a; B b; ... }
if I want to store the state of the program, should I say implement the Serializable interface only in D and A classes?
Also suppose that there's this class E that is just being used in order to help some calculations in D.
Should E also implement Serializable? it doesn't seem correct to me, because it's just a class that helps with calculations and it doesn't store anything of value that needs to be known at a later state.