/** Remove the item from the shopping cart. */ public void removeItem(ShoppingCartItem si) { table.remove(si.getID()); }
/** Update the item in the shopping cart. */ public void updateItem(ShoppingCartItem si) { table.put(si.getID(), new Integer(si.getQuantity())); }