// Stuart Reges // 1/19/00 // // ShoppingMain provides method main for a simple shopping program. public class ShoppingMain { public static void main(String[] args) { Catalog list = new Catalog("CSE142 Holiday Gifts"); list.add(new Item("silly putty", 3.95, 10, 19.99)); list.add(new Item("silly string", 3.50, 10, 14.95)); list.add(new Item("bottle o bubbles", 0.99)); list.add(new Item("pinwheel", 1.49)); list.add(new Item("Sony PlayStation", 99.99)); list.add(new Item("Computer Science pen", 1.20)); list.add(new Item("Rubik's cube", 9.10)); list.add(new Item("Computer Science Barbie", 9.99)); list.add(new Item("'Java Rules!' button", 0.99, 10, 5.0)); list.add(new Item("'Java Rules!' bumper sticker", 0.99, 20, 8.95)); ShoppingFrame f = new ShoppingFrame(list); f.show(); } }