Uses of Interface
org.salespointframework.core.data.interfaces.DataBasketEntryDestination

Packages that use DataBasketEntryDestination
org.salespointframework.core.data Provides interfaces for data management. 
org.salespointframework.core.data.filters Contains catalog and stock filters. 
org.salespointframework.core.data.interfaces   
 

Uses of DataBasketEntryDestination in org.salespointframework.core.data
 

Subinterfaces of DataBasketEntryDestination in org.salespointframework.core.data
 interface SelfManagingDBEDestination<T>
          DataBasketEntryDestination that knows how to rollback or commit add operations.
 

Classes in org.salespointframework.core.data that implement DataBasketEntryDestination
 class AbstractCurrency
          Abstract Java implementation of the Currency interface.
 class CatalogImpl<T extends CatalogItemImpl>
          Pure Java implementation of the Catalog interface.
 class CountingStockImpl<T extends StockItemImpl,CT extends CatalogItemImpl>
          Pure Java implementation of the CountingStock interface.
 class CurrencyImpl
          Deprecated. user EUROCurrencyImpl
 class EUROCurrencyImpl
          EURO-Implementation of AbstractCurrency
 class MoneyBagImpl
          Pure Java implementation of the MoneyBag interface.
 class StockImpl<T,ST extends StockItemImpl,CT extends CatalogItemImpl>
          Pure Java implementation of the Stock interface.
 class StoringStockImpl<T extends StockItemImpl,CT extends CatalogItemImpl>
          Pure Java implementation of the StoringStock interface.
 

Fields in org.salespointframework.core.data declared as DataBasketEntryDestination
protected  DataBasketEntryDestination DataBasketEntryImpl.m_dbedDest
          The destination of the operation.
protected  DataBasketEntryDestination DataBasketConditionImpl.m_dbedDest
          The destination condition.
 

Methods in org.salespointframework.core.data that return DataBasketEntryDestination
 DataBasketEntryDestination DataBasketEntryImpl.getDestination()
          Get the entry's destination.
 DataBasketEntryDestination DataBasketConditionImpl.getDestination()
           
 

Constructors in org.salespointframework.core.data with parameters of type DataBasketEntryDestination
DataBasketConditionImpl(java.lang.String sMainKey, java.lang.String sSecondaryKey, DataBasketEntrySource dbesSource, DataBasketEntryDestination dbedDest, java.lang.Object oValue)
          Create a new DataBasketConditionImpl.
DataBasketEntryImpl(java.lang.String sMainKey, java.lang.String sSecondaryKey, DataBasketEntrySource dbesSource, DataBasketEntryDestination dbedDest, T oValue)
          Create a new DataBasketEntryImpl.
 

Uses of DataBasketEntryDestination in org.salespointframework.core.data.filters
 

Classes in org.salespointframework.core.data.filters that implement DataBasketEntryDestination
 class AbstractStockFilter<T extends StockItem,CT extends CatalogItem>
          Abstract superclass of all Stock filters.
 class CatalogFilter<T extends CatalogItem>
          A filter for Catalogs.
 class CountingStockFilter<T extends StockItem,CT extends CatalogItem>
          StockFilter for CountingStocks.
 class CurrencyFilter<T extends CurrencyItem>
          A CatalogFilter that filters Currencies.
 class MoneyBagFilter
          CountingStockFilter that filters MoneyBags.
 class StoringStockFilter<T extends StockItem,CT extends CatalogItem>
          StockFilter for StoringStocks.
 

Uses of DataBasketEntryDestination in org.salespointframework.core.data.interfaces
 

Subinterfaces of DataBasketEntryDestination in org.salespointframework.core.data.interfaces
 interface Catalog<T extends CatalogItem>
          A Catalog.
 interface CountingStock<T extends StockItem,CT extends CatalogItem>
          A Stock that counts for each CatalogItem in the associated Catalog how many objects of that type are actually available.
 interface Currency<T extends CurrencyItem>
          A special Catalog that represents a currency.
 interface ListenableCatalog<T extends CatalogItem>
          A Catalog that fires events to inform about changes to its contents.
 interface ListenableStock<T extends StockItem,CT extends CatalogItem>
          A Stock that will fire events to inform about changes to its contents.
 interface MoneyBag
          Tag interface marking CountingStocks that work together with Currencies.
 interface Stock<T extends StockItem,CT extends CatalogItem>
          A Stock.
 interface StoringStock<T extends StockItem,CT extends CatalogItem>
          Tag interface that identifies StoringStocks.
 

Methods in org.salespointframework.core.data.interfaces that return DataBasketEntryDestination
 DataBasketEntryDestination DataBasketEntry.getDestination()
          Get the destination of the operation described by the DataBasketEntry.
 DataBasketEntryDestination DataBasketCondition.getDestination()
          Return the destination for operations that match the condition.