01: /* 02: * GolfShop 03: * 04: * Enhydra super-servlet specification object 05: * 06: */ 07: 08: package golfShop.spec.cart; 09: 10: public interface CartItemPair { 11: 12: public int getQuantity(); 13: 14: public CartItem getItem(); 15: 16: }