ok in the MallList class you have too many ';', and MallList doesn't
have a constructor with three arrays as parameters..
you have the following code, but no constructor for it.
MallList list = new MallList(
String[],double[],int[]);
now MallItem does, but they are not arrays.
you need to pass a String[] name, double[] price, int[] store.
so in other words, change MallItem's argument constructor to
public MallItem(String[] name, double[] price, int[] store)
{
// etc.
}
and then instead of instantiating a object of type MallList, make one
of type MallItem.
Justin Fox
[ March 01, 2007: Message edited by: Justin Fox ]