コード例 #1
0
 /** Remove the item from the shopping cart. */
 public void removeItem(ShoppingCartItem si) {
   table.remove(si.getID());
 }
コード例 #2
0
 /** Update the item in the shopping cart. */
 public void updateItem(ShoppingCartItem si) {
   table.put(si.getID(), new Integer(si.getQuantity()));
 }