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

Packages that use DataBasketCondition
org.salespointframework.core.data Provides interfaces for data management. 
org.salespointframework.core.data.interfaces   
org.salespointframework.desktop   
org.salespointframework.desktop.formsheets   
org.salespointframework.desktop.models   
org.salespointframework.web.helper   
 

Uses of DataBasketCondition in org.salespointframework.core.data
 

Classes in org.salespointframework.core.data that implement DataBasketCondition
 class DataBasketConditionImpl<T>
          Basic implementation of the DataBasketCondition interface.
 

Fields in org.salespointframework.core.data declared as DataBasketCondition
static DataBasketCondition DataBasketConditionImpl.ALL_CATALOG_ITEMS
          A DataBasketCondition that matches all entries that describe CatalogItem movements.
static DataBasketCondition DataBasketConditionImpl.ALL_ENTRIES
          A DataBasketCondition matching all items in a DataBasket.
static DataBasketCondition DataBasketConditionImpl.ALL_STOCK_ITEMS
          A DataBasketCondition that matches all entries that describe StockItem movements.
 

Methods in org.salespointframework.core.data that return DataBasketCondition
static DataBasketCondition DataBasketConditionImpl.allCatalogItemsWithDest(Catalog cDest)
          A DataBasketCondition that matches all entries that describe CatalogItems being entered into the given Catalog.
static DataBasketCondition DataBasketConditionImpl.allCatalogItemsWithSource(Catalog cSource)
          A DataBasketCondition that matches all entries that describe CatalogItems being taken from the given Catalog.
static DataBasketCondition DataBasketConditionImpl.allStockItemsWithDest(Stock stDest)
          A DataBasketCondition that matches all entries that describe StockItems being entered into the given Stock.
static DataBasketCondition DataBasketConditionImpl.allStockItemsWithSource(Stock stSource)
          A DataBasketCondition that matches all entries that describe StockItems being taken from the given Stock.
static DataBasketCondition DataBasketConditionImpl.specificCatalogItem(CatalogItem ci)
          A DataBasketCondition that matches exactly one given CatalogItem.
static DataBasketCondition DataBasketConditionImpl.specificStockItem(StockItem si)
          A DataBasketCondition that matches exactly one given StockItem.
 

Methods in org.salespointframework.core.data with parameters of type DataBasketCondition
 void DataBasketImpl.commit(DataBasketCondition dbc)
          Commit all items in all subbaskets that do match the given condition.
 void DataBasketImpl.SubDataBasket.commit(DataBasketCondition dbc)
          Commit all items in this subbasket that match the condition.
 boolean DataBasketImpl.contains(DataBasketCondition dbc)
          Check whether any entries matching a particular condition are contained in the DataBasket.
 DataBasketEntry DataBasketImpl.get(DataBasketCondition dbc)
          Get the first entry in the DataBasket that matches the condition.
 DataBasketEntry DataBasketImpl.SubDataBasket.get(DataBasketCondition dbc)
          Get the first entry in this subbasket that matches the condition, if any.
 java.util.Iterator<DataBasketEntry> DataBasketImpl.iterator(DataBasketCondition dbc)
          Iterate all entries in all subbaskets that match the condition.
<T> java.util.Iterator<DataBasketEntry>
DataBasketImpl.SubDataBasket.iterator(DataBasketCondition<T> dbc, boolean fAllowRemove, boolean fShowHandled)
          Iterate all entries in the subbasket that match the given condition.
 void DataBasketImpl.rollback(DataBasketCondition dbc)
          Rollback all items in all subbaskets that do match the given condition.
 void DataBasketImpl.SubDataBasket.rollback(DataBasketCondition dbc)
          Rollback all entries in this subbasket that match the condition.
 java.util.Iterator<DataBasketEntry> DataBasketImpl.subBasketIterator(java.lang.String sName, DataBasketCondition dbc)
          Iterate all entries in a given subbasket that match the given condition.
 Value DataBasketImpl.sumBasket(DataBasketCondition dbc, BasketEntryValue bev, Value vInit)
          Sum up all entries in the DataBasket that match the given condition.
 Value DataBasketImpl.sumCurrentSubBasket(DataBasketCondition dbc, BasketEntryValue bev, Value vInit)
          Sum up all entries in the current subbasket that match the given condition.
 Value DataBasketImpl.SubDataBasket.sumSubBasket(DataBasketCondition dbc, BasketEntryValue bev, Value vInit)
          Sum up the values of all entries in this subbasket that match the condition.
 Value DataBasketImpl.sumSubBasket(java.lang.String sName, DataBasketCondition dbc, BasketEntryValue bev, Value vInit)
          Sum up all entries in a given subbasket that match the given condition.
 

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

Methods in org.salespointframework.core.data.interfaces with parameters of type DataBasketCondition
 void DataBasket.commit(DataBasketCondition dbc)
          Commit all items that match the given condition.
 boolean DataBasket.contains(DataBasketCondition dbc)
          Return true if the DataBasket contains an entry that matches the condition.
 DataBasketEntry DataBasket.get(DataBasketCondition dbc)
          Get the first entry found that matches the given condition.
 java.util.Iterator<DataBasketEntry> DataBasket.iterator(DataBasketCondition dbc)
          Iterate the contents of this DataBasket.
 void DataBasket.rollback(DataBasketCondition dbc)
          Roll back all items that match the given condition.
 java.util.Iterator<DataBasketEntry> DataBasket.subBasketIterator(java.lang.String sName, DataBasketCondition dbc)
          Iterate the contents of a given SubBasket.
 Value DataBasket.sumBasket(DataBasketCondition dbc, BasketEntryValue bev, Value vInit)
          Sum up the values of all items in this DataBasket that match the condition.
 Value DataBasket.sumCurrentSubBasket(DataBasketCondition dbc, BasketEntryValue bev, Value vInit)
          Sum up the values of all items in the current subbasket that match the condition.
 Value DataBasket.sumSubBasket(java.lang.String sName, DataBasketCondition dbc, BasketEntryValue bev, Value vInit)
          Sum up the values of all items in the given subbasket that match the condition.
 

Uses of DataBasketCondition in org.salespointframework.desktop
 

Constructors in org.salespointframework.desktop with parameters of type DataBasketCondition
JDataBasketListView(DataBasket db, DataBasketCondition dbc, java.util.Comparator<DataBasketEntry> cmp, JListView.ListViewOrientation orientation, javax.swing.ListCellRenderer renderer)
          default constructor
JDataBasketListView(DataBasket db, DataBasketCondition dbc, java.util.Comparator<DataBasketEntry> cmp, JListView.ListViewOrientation orientation, javax.swing.ListCellRenderer renderer, boolean categorize, Category defaultCategory, DataBasketEntryGrouper dbeg)
          default constructor
JDataBasketTable(DataBasket db, DataBasketCondition dbc, DataBasketEntryGrouper dbeg, java.util.Comparator<DataBasketEntry> cmp, TableEntryDescriptor ted)
          Create a new JDataBasketTable.
 

Uses of DataBasketCondition in org.salespointframework.desktop.formsheets
 

Fields in org.salespointframework.desktop.formsheets declared as DataBasketCondition
protected  DataBasketCondition DataExchangeFormSheet.DataExchangeOption.dbc
          condition for DataBaskets
 

Methods in org.salespointframework.desktop.formsheets that return DataBasketCondition
 DataBasketCondition DataExchangeFormSheet.DataExchangeOption.getDataBasketCondition()
           
 

Methods in org.salespointframework.desktop.formsheets with parameters of type DataBasketCondition
static ListViewFormSheet ListViewFormSheet.create(java.lang.String caption, DataBasket db, DataBasketCondition dbc)
          creates a new instance of ListViewFormSheet from a DataBasket source
static SingleTableFormSheet SingleTableFormSheet.create(java.lang.String sCaption, DataBasket db, UIGate uigGate, DataBasketCondition dbc, java.util.Comparator<DataBasketEntry> cmp, TableEntryDescriptor ted)
          Create and return a new SingleTableFormSheet that will display the contents of a DataBasket.
static SingleTableFormSheet SingleTableFormSheet.create(java.lang.String sCaption, DataBasket db, UIGate uigGate, DataBasketCondition dbc, DataBasketEntryGrouper dbeg, java.util.Comparator<DataBasketEntry> cmp, TableEntryDescriptor ted)
          Create and return a new SingleTableFormSheet that will display the contents of a DataBasket.
static SingleTableFormSheet SingleTableFormSheet.create(java.lang.String sCaption, DataBasket db, UIGate uigGate, DataBasketCondition dbc, DataBasketEntryGrouper dbeg, TableEntryDescriptor ted)
          Create and return a new SingleTableFormSheet that will display the contents of a DataBasket.
static SingleTableFormSheet SingleTableFormSheet.create(java.lang.String sCaption, DataBasket db, UIGate uigGate, DataBasketCondition dbc, TableEntryDescriptor ted)
          Create and return a new SingleTableFormSheet that will display the contents of a DataBasket.
static ListViewFormSheet ListViewFormSheet.create(java.lang.String caption, UIGate uiGate, DataBasket db, DataBasketCondition dbc, java.util.Comparator<DataBasketEntry> cmp, JListView.ListViewOrientation orientation, javax.swing.ListCellRenderer renderer)
          creates a new instance of ListViewFormSheet from a DataBasket source
static ListViewFormSheet ListViewFormSheet.create(java.lang.String caption, UIGate uiGate, DataBasket db, DataBasketCondition dbc, java.util.Comparator<DataBasketEntry> cmp, JListView.ListViewOrientation orientation, javax.swing.ListCellRenderer renderer, boolean categorize, Category defaulCategory, DataBasketEntryGrouper dbeg)
          creates a new instance of ListViewFormSheet from a DataBasket source
 void DataExchangeFormSheet.DataExchangeOption.setDataBasketCondition(DataBasketCondition dbc)
           
 void DataExchangeFormSheet.setDestTable(DataBasket m_dbSource, DataBasketCondition dbc, DataBasketEntryGrouper dbeg, TableEntryDescriptor ted)
          Set the source of the destination table.
 void DataExchangeFormSheet.setSourceTable(DataBasket m_dbSource, DataBasketCondition dbc, DataBasketEntryGrouper dbeg, TableEntryDescriptor ted)
          Set the source of the source table.
 

Constructors in org.salespointframework.desktop.formsheets with parameters of type DataBasketCondition
DataExchangeFormSheet.DataExchangeOption(java.util.Comparator cmp, boolean showZeros, DataBasketCondition dbc, DataBasketEntryGrouper dbeg)
          Constructor
DataExchangeFormSheet.ListViewDataExchangeOption(java.util.Comparator cmp, boolean showZeros, DataBasketCondition dbc, boolean categorize, Category defaultCategory, DataBasketEntryGrouper dbeg, JListView.ListViewOrientation orientation, javax.swing.ListCellRenderer renderer, float minimumCellSize, float maximumCellSize, float initialCellSize, float cellRatio, int seperatorThickness, boolean showSlider, boolean showSearch)
          constructor
DataExchangeFormSheet.TableDataExchangeOption(java.util.Comparator cmp, boolean showZeros, DataBasketCondition dbc, DataBasketEntryGrouper dbeg, TableEntryDescriptor ted)
          constructor
 

Uses of DataBasketCondition in org.salespointframework.desktop.models
 

Fields in org.salespointframework.desktop.models declared as DataBasketCondition
protected  DataBasketCondition DataBasketListModel.dbc
          filter condition
protected  DataBasketCondition DataBasketTableModel.m_dbcCondition
          The condition specifying the items to be displayed.
 

Constructors in org.salespointframework.desktop.models with parameters of type DataBasketCondition
DataBasketListModel(DataBasket db, DataBasketCondition dbc, java.util.Comparator<DataBasketEntry> cmp)
          constrcutor
DataBasketListModel(DataBasket db, DataBasketCondition dbc, java.util.Comparator<DataBasketEntry> cmp, boolean categorize, Category defaultCategory, DataBasketEntryGrouper dbeg)
          constructor
DataBasketTableModel(DataBasket db, DataBasketCondition dbc, DataBasketEntryGrouper dbeg, java.util.Comparator<DataBasketEntry> cmp, TableEntryDescriptor ted)
          Create a new DataBasketTableModel.
 

Uses of DataBasketCondition in org.salespointframework.web.helper
 

Methods in org.salespointframework.web.helper with parameters of type DataBasketCondition
 ATMBuilder<T> ATMBuilder.dbc(DataBasketCondition<?> dataBasketCondition)
          method chaining version of ATMBuilder.setDataBasketCondition(DataBasketCondition)
 void ATMBuilder.setDataBasketCondition(DataBasketCondition<?> dataBasketCondition)
          sets a DataBasketCondition