KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > golfShop > spec > cart > CartItemPair


1 /*
2  * GolfShop
3  *
4  * Enhydra super-servlet specification object
5  *
6  */

7
8 package golfShop.spec.cart;
9
10 public interface CartItemPair {
11
12 public int getQuantity();
13 public CartItem getItem();
14
15 }
Popular Tags