I have a class that i have created of type StoreItem. It contains:
String, int, double, int
What I want to do is for the user to be able to add more items during runtime. I have tried to convert it to an ArrayList but I get errors telling me that it is a type mismatch so I tried Vectors. But if I do that won't have I have to convert the Vector{i] back into StoreItem before I can manipulate it? Is there anyway for me to be able to just have an array of StoreItems that I can dynamically add to?
thanks,
Daniela