So, i have a class which has the following attributes
private String name;
private int counter;
private DateFormat df;
private DecimalFormat def;
private ArrayList<Bike> bike;
static String[] titles = {"some,items,here"};
all these are already initialized and then on top i declared
public class Motor extends AbstractTableModel implements Serializable
but i still get a IONotSerializableException when i use an ObjectOutputStream, is there some restrictions which i might now know that's why its like this?
AbstractTableModelhave any non-serializable members? For example, have you added listeners that do not implementSerializableorExternalizable? IsBikeserializable? – Mike Samuel May 19 '11 at 4:08Bikes inside yourMotoris a violation of object-oriented principles. TheMotorshould contain aHamsterWheelwhich contains aHamster, and everyone knows hamsters can't rideBikes. – Mike Samuel May 19 '11 at 4:11