I want to send an object via socket, so I have to implement Serializable. But my class is a compound class, like this simple code:
class B{
private int a;
public B(int aa){a=aa;}
}
class A {
private B b;
public A(B b1){ b=b1;}
}
I want to send an object of class A, with all it's contents such as the B object inside. Which classes should implement Serializable? just A, or both A and B?
Addition: How about vectors? Think that I have a Vector of B in A like this:
class A {
private Vector bvector;
}