Uses of Interface
com.elasticpath.domain.shoppingcart.CartItem

Packages that use CartItem
com.elasticpath.domain.shoppingcart   
com.elasticpath.domain.shoppingcart.impl   
com.elasticpath.sfweb.ajax.bean   
com.elasticpath.sfweb.ajax.bean.impl   
 

Uses of CartItem in com.elasticpath.domain.shoppingcart
 

Methods in com.elasticpath.domain.shoppingcart that return CartItem
 CartItem ShoppingCart.addAssociatedCartItem(ProductAssociation productAssociation, CartItem parentCartItem)
          Adds an item to the cart where the source of the item information is a ProductAssociation.
 CartItem ShoppingCart.addCartItem(CartItem cartItem)
          Add an item to the cart.
 CartItem ShoppingCart.addCartItem(ProductSku productSku, int quantity)
          Convenience method for adding an item to the cart.
 CartItem ShoppingCart.addWishListItem(ProductSku productSku)
          Convenience method for adding an item to the wishlist.
 CartItem ShoppingCart.getCartItem(java.lang.String skuGuid)
          Get a cart item by the GUID of its SKU.
 CartItem ShoppingCart.getCartItemById(long cartItemId)
          Returns the cart item with the given id.
 CartItem CartItem.getParentCartItem()
          Get the parent cart item that this cart item is dependent on.
 CartItem ShoppingCart.updateCartItemByGuid(java.lang.String skuGuid, int quantity)
          Updates an existing cart item in the shopping cart, found by the guid of its product SKU.
 CartItem ShoppingCart.updateCartItemById(long cartItemId, java.lang.String skuGuid, int quantity)
          Updates an existing cart item in the shopping cart.
 

Methods in com.elasticpath.domain.shoppingcart with parameters of type CartItem
 CartItem ShoppingCart.addAssociatedCartItem(ProductAssociation productAssociation, CartItem parentCartItem)
          Adds an item to the cart where the source of the item information is a ProductAssociation.
 CartItem ShoppingCart.addCartItem(CartItem cartItem)
          Add an item to the cart.
 void CartItem.addDependentCartItem(CartItem dependentCartItem)
          Specify that another cart item depends on this cart item.
 void CartItem.setParentCartItem(CartItem parentCartItem)
          Set the parent cart item that this cart item is dependent on.
 

Uses of CartItem in com.elasticpath.domain.shoppingcart.impl
 

Classes in com.elasticpath.domain.shoppingcart.impl that implement CartItem
 class AbstractCartItemImpl
          A CartItem represents a quantity of SKUs in a shopping cart, saved cart, wish list, etc.
 class ShoppingCartItemImpl
          A ShoppingCartItem represents a quantity of SKUs in a shopping cart.
 class WishListItemImpl
          A WishListItem represents a quantity of SKUs in a shopping cart.
 

Methods in com.elasticpath.domain.shoppingcart.impl that return CartItem
 CartItem ShoppingCartImpl.addAssociatedCartItem(ProductAssociation productAssociation, CartItem parentCartItem)
          Adds an item to the cart where the source of the item information is a ProductAssociation.
 CartItem ShoppingCartImpl.addCartItem(CartItem cartItem)
          Add an item to the cart.
 CartItem ShoppingCartImpl.addCartItem(ProductSku productSku, int quantity)
          Convenience method for adding an item to the cart.
 CartItem ShoppingCartImpl.addWishListItem(ProductSku productSku)
          Convenience method for adding an item to the wishlist.
 CartItem ShoppingCartImpl.getCartItem(java.lang.String skuGuid)
          Get a cart item by the GUID of its SKU.
 CartItem ShoppingCartImpl.getCartItemById(long cartItemId)
          Returns the cart item with the given id.
 CartItem AbstractCartItemImpl.getParentCartItem()
          Get the parent cart item that this cart item is dependent on.
 CartItem ShoppingCartImpl.updateCartItemByGuid(java.lang.String skuGuid, int quantity)
          Updates an existing cart item in the shopping cart, found by the guid of its product SKU.
 CartItem ShoppingCartImpl.updateCartItemById(long cartItemId, java.lang.String skuGuid, int quantity)
          Updates an existing cart item in the shopping cart.
 

Methods in com.elasticpath.domain.shoppingcart.impl with parameters of type CartItem
 CartItem ShoppingCartImpl.addAssociatedCartItem(ProductAssociation productAssociation, CartItem parentCartItem)
          Adds an item to the cart where the source of the item information is a ProductAssociation.
 CartItem ShoppingCartImpl.addCartItem(CartItem cartItem)
          Add an item to the cart.
 void AbstractCartItemImpl.addDependentCartItem(CartItem dependentCartItem)
          Specify that another cart item depends on this cart item.
 void AbstractCartItemImpl.setParentCartItem(CartItem parentCartItem)
          Set the parent cart item that this cart item is dependent on.
 

Uses of CartItem in com.elasticpath.sfweb.ajax.bean
 

Subinterfaces of CartItem in com.elasticpath.sfweb.ajax.bean
 interface CartItemBean
          This bean is used for wrapping the CartItem objects into localized versions for dwr.
 

Methods in com.elasticpath.sfweb.ajax.bean that return CartItem
 CartItem CartItemBean.getCartItem()
           
 

Uses of CartItem in com.elasticpath.sfweb.ajax.bean.impl
 

Classes in com.elasticpath.sfweb.ajax.bean.impl that implement CartItem
 class CartItemBeanImpl
          A wrapper class for cart items sent through dwr.
 

Methods in com.elasticpath.sfweb.ajax.bean.impl that return CartItem
 CartItem CartItemBeanImpl.getCartItem()
           
 CartItem CartItemBeanImpl.getParentCartItem()
          Get the parent cart item that this cart item is dependent on.
 

Methods in com.elasticpath.sfweb.ajax.bean.impl with parameters of type CartItem
 void CartItemBeanImpl.addDependentCartItem(CartItem dependentCartItem)
          Specify that another cart item depends on this cart item.
 void CartItemBeanImpl.setParentCartItem(CartItem parentCartItem)
          Set the parent cart item that this cart item is dependent on.
 

Constructors in com.elasticpath.sfweb.ajax.bean.impl with parameters of type CartItem
CartItemBeanImpl(CartItem cartItem, java.util.Currency currency, java.util.Locale locale)
          Creates a new dwr CartItemBean wrapper for a CartItem.