I'm not sure whether this is even possible or not... I'm only starting to program in Java.
So my question is. I created this multidimensional array which contains objects.
Could you please check it and see what am I doing wrong?
Object data[][] =
{"Item#1", jackets.getDescription(), jackets.getUnitOnHand(), jackets.getPrice(0) }
{"Item#2", designerJeans.getDescription(), designerJeans.getUnitOnHand(), designerJeans.getPrice(0)};
Could you tell me whats wrong in the above code?