|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DataBasket | |
---|---|
org.salespointframework.core | This package contains the central classes of the Framework. |
org.salespointframework.core.data | Provides interfaces for data management. |
org.salespointframework.core.data.events | Provides classes and interfaces for events triggered by classes in the data package and its sub-packages. |
org.salespointframework.core.data.filters | Contains catalog and stock filters. |
org.salespointframework.core.data.interfaces | |
org.salespointframework.desktop | |
org.salespointframework.desktop.formsheets | |
org.salespointframework.desktop.models | |
org.salespointframework.desktop.strategies | |
org.salespointframework.desktop.strategies.dataexchangeformsheet | Contains the MoveStrategy classes for
TwoTableFormSheets . |
org.salespointframework.web.helper | |
org.salespointframework.web.movestrategies | |
org.salespointframework.web.spring.controller |
Uses of DataBasket in org.salespointframework.core |
---|
Fields in org.salespointframework.core declared as DataBasket | |
---|---|
protected DataBasket |
Shop.ProcessHandle.m_db
The DataBasket to be used. |
Methods in org.salespointframework.core that return DataBasket | |
---|---|
DataBasket |
SalesPoint.attach(DataBasket db)
Attach a DataBasket to this SalesPoint. |
DataBasket |
SaleProcess.attach(DataBasket dbNew)
Attach the DataBaskte that is going to be used to implement transactional behavior for this Process. |
DataBasket |
SalesPoint.detachBasket()
Detach any DataBasket currently attached to this SalesPoint. |
DataBasket |
SaleProcess.detachBasket()
Detach and return the current DataBasket. |
DataBasket |
SalesPoint.getBasket()
Get the DataBasket currently attached to this SalesPoint. |
DataBasket |
SaleProcess.getBasket()
Get the currently attached DataBasket. |
Methods in org.salespointframework.core with parameters of type DataBasket | |
---|---|
DataBasket |
SalesPoint.attach(DataBasket db)
Attach a DataBasket to this SalesPoint. |
DataBasket |
SaleProcess.attach(DataBasket dbNew)
Attach the DataBaskte that is going to be used to implement transactional behavior for this Process. |
void |
Shop.runBackgroundProcess(SaleProcess p,
User usr,
DataBasket db)
Run a background process on the Shop. |
void |
SalesPoint.runProcess(SaleProcess p,
DataBasket db)
Starts a process on this SalesPoint. |
void |
Shop.runProcess(SaleProcess p,
Display d,
User usr,
DataBasket db)
Run a process on the Shop. |
Constructors in org.salespointframework.core with parameters of type DataBasket | |
---|---|
Shop.ProcessHandle(SaleProcess p,
Display d,
User usr,
DataBasket db)
Create a new ProcessHandle. |
Uses of DataBasket in org.salespointframework.core.data |
---|
Classes in org.salespointframework.core.data that implement DataBasket | |
---|---|
class |
DataBasketImpl
Pure Java implementation of the DataBasketImpl.SubDataBasket interface. |
Fields in org.salespointframework.core.data declared as DataBasket | |
---|---|
protected DataBasket |
StockImpl.m_dbCatalogValidator
The DataBasket that determines the visibility of the catalog associated with this Stock. |
Methods in org.salespointframework.core.data that return DataBasket | |
---|---|
DataBasket |
DataBasketEntryImpl.getOwner()
Return the DataBasket containing this DataBasketEntry. |
Methods in org.salespointframework.core.data with parameters of type DataBasket | |
---|---|
void |
CountingStockImpl.add(java.lang.String sKey,
int nCount,
DataBasket db)
Add a number of items of a given key to the Stock. |
void |
StoringStockImpl.add(T si,
DataBasket db)
Add an item to the Stock. |
void |
CountingStockImpl.add(T si,
DataBasket db)
Add an item to the Stock. |
void |
CatalogImpl.add(T ci,
DataBasket db)
Add the given item to the Catalog. |
void |
StockImpl.addStock(Stock<ST,CT> st,
DataBasket db,
boolean fRemove)
Add the contents of a Stock to this Stock. |
void |
CountingStockImpl.addStock(Stock<T,CT> st,
DataBasket db,
boolean fRemove)
Overridden for efficiency reasons. |
void |
StockImpl.checkNameChange(DataBasket db,
java.lang.String sOldName,
java.lang.String sNewName)
Check a name change of a StockItem that is contained in this Stock. |
void |
CatalogImpl.checkNameChange(DataBasket db,
java.lang.String sOldName,
java.lang.String sNewName)
Check a name change of a CatalogItem in this Catalog. |
void |
CountingStockImpl.commitAdd(DataBasket db,
DataBasketEntry dbe)
Commit the adding of StockItems. |
void |
StoringStockImpl.commitAdd(DataBasket db,
DataBasketEntry<T> dbe)
Commit the adding of a StockItem. |
void |
SelfManagingDBEDestination.commitAdd(DataBasket db,
DataBasketEntry<T> dbe)
Called when an add must be commited. |
void |
CatalogImpl.commitAdd(DataBasket db,
DataBasketEntry<T> dbe)
Commit the adding of a CatalogItem. |
void |
CountingStockImpl.commitRemove(DataBasket db,
DataBasketEntry dbe)
Commit the removal of StockItems. |
void |
StoringStockImpl.commitRemove(DataBasket db,
DataBasketEntry<T> dbe)
Commit the removal of a StockItem. |
void |
SelfManagingDBESource.commitRemove(DataBasket db,
DataBasketEntry<T> dbe)
Called when a remove must be rolled back. |
void |
CatalogImpl.commitRemove(DataBasket db,
DataBasketEntry<T> dbe)
Commit the removal of a CatalogItem. |
boolean |
StockImpl.contains(ST si,
DataBasket db)
Check whether the Stock contains the given StockItem. |
boolean |
StockImpl.contains(java.lang.String sKey,
DataBasket db)
Check whether the Stock contains an item with the given key. |
boolean |
CatalogImpl.contains(java.lang.String sKey,
DataBasket db)
Check whether the Catalog contains a certain CatalogItem. |
boolean |
CountingStockImpl.contains(T si,
DataBasket db)
Check whether the Stock contains the given StockItem. |
boolean |
StockImpl.containsStock(Stock<ST,CT> st,
DataBasket db)
Check whether the given Stock is completely contained in this Stock. |
boolean |
CountingStockImpl.containsStock(Stock<T,CT> st,
DataBasket db)
Reimplemented for efficiency reasons. |
int |
StoringStockImpl.countItems(java.lang.String sKey,
DataBasket db)
Count the StockItems with a given key that are visible using a given DataBasket. |
int |
CountingStockImpl.countItems(java.lang.String sKey,
DataBasket db)
Count the StockItems with a given key that are visible using a given DataBasket. |
protected Value |
StockFromStockCreatorBT.doFill(int nIdx,
Value v,
Stock st,
DataBasket db)
Backtracking step method. |
Value |
StockFromStockCreatorBT.fillStock(Stock st,
Value v,
DataBasket db)
Fill the destination Stock using the same algorithm as in StockFromStockCreator.fillStock(org.salespointframework.core.data.interfaces.Stock, org.salespointframework.core.data.interfaces.Value, org.salespointframework.core.data.interfaces.DataBasket) , but
with backtracking. |
Value |
StockFromStockCreator.fillStock(Stock st,
Value v,
DataBasket db)
Try to fill the given Stock using only items from the source Stock. |
Value |
DefaultCountingStockFromValueCreator.fillStock(Stock st,
Value v,
DataBasket db)
This StockFromValueCreator assumes a potentially infinite source of available items and adds exactly as many items of each type (i.e. |
Value |
StockImpl.fillStockWithValue(DataBasket db,
Value vTarget,
StockFromValueCreator sfvc)
Increase the Stock's value by a given value. |
protected void |
CatalogImpl.fireCanEditCatalogItem(T ci,
DataBasket db)
Fire an event to all listeners listening to this Catalog. |
protected void |
CatalogImpl.fireCanRemoveCatalogItem(T ci,
DataBasket db)
Fire an event to all listeners listening to this Catalog. |
protected void |
CatalogImpl.fireCatalogItemAddCommit(T ci,
DataBasket db)
Fire an event to all listeners listening to this Catalog. |
protected void |
CatalogImpl.fireCatalogItemAdded(T ci,
DataBasket db)
Fire an event to all listeners listening to this Catalog. |
protected void |
CatalogImpl.fireCatalogItemAddRollback(T ci,
DataBasket db)
Fire an event to all listeners listening to this Catalog. |
protected void |
CatalogImpl.fireCatalogItemRemoveCommit(T ci,
DataBasket db)
Fire an event to all listeners listening to this Catalog. |
protected void |
CatalogImpl.fireCatalogItemRemoved(T ci,
DataBasket db)
Fire an event to all listeners listening to this Catalog. |
protected void |
CatalogImpl.fireCatalogItemRemoveRollback(T ci,
DataBasket db)
Fire an event to all listeners listening to this Catalog. |
protected void |
CatalogImpl.fireCommitEditCatalogItem(T ci,
DataBasket db)
Fire an event to all listeners listening to this Catalog. |
protected void |
CatalogImpl.fireEditingCatalogItem(T ci,
DataBasket db)
Fire an event to all listeners listening to this Catalog. |
protected void |
CatalogImpl.fireRollbackEditCatalogItem(T ci,
DataBasket db)
Fire an event to all listeners listening to this Catalog. |
java.util.Iterator<T> |
StoringStockImpl.get(java.lang.String sKey,
DataBasket db,
boolean fForEdit)
Iterate all items with a given key. |
java.util.Iterator<T> |
CountingStockImpl.get(java.lang.String sKey,
DataBasket db,
boolean fForEdit)
Iterate all items with a given key. |
T |
CatalogImpl.get(java.lang.String sKey,
DataBasket db,
boolean fForEdit)
Get the indicated item from the Catalog. |
CatalogItem |
StockItemImpl.getAssociatedItem(DataBasket db)
Get the CatalogItem that is associated with this StockItem. |
Catalog<CT> |
StockImpl.getCatalog(DataBasket db)
Get the Catalog associated to this Stock. |
CatalogImpl |
CatalogImpl.getEditableCopy(DataBasket db)
Convenience method, which gets an editable ShallowClone of this Catalog from its parent Catalog and returns it. |
java.util.Iterator<ST> |
StockImpl.iterator(DataBasket db,
boolean fForEdit)
Iterate all items in the Stock. |
java.util.Iterator<T> |
CatalogImpl.iterator(DataBasket db,
boolean fForEdit)
Return an iterator of all items in the Catalog. |
java.util.Set<java.lang.String> |
StockImpl.keySet(DataBasket db)
Return the set of keys for which StockItems are visible using the given DataBasket. |
java.util.Set<java.lang.String> |
CatalogImpl.keySet(DataBasket db)
Get a set of all keys currently in the Catalog. |
void |
StockImpl.nameHasChanged(DataBasket db,
java.lang.String sOldName,
java.lang.String sNewName)
Stocks will not allow name changes of StockItem, as a principle. |
void |
CatalogImpl.nameHasChanged(DataBasket db,
java.lang.String sOldName,
java.lang.String sNewName)
Synchronize the Catalog's internal data with the name change. |
protected void |
StockImpl.prepareReferentialIntegrity(DataBasket db,
DataBasketEntry dbe)
Helper method to be called in the beginning of commitAdd and rollbackRemove. |
StockItem |
StoringStockImpl.remove(java.lang.String sKey,
DataBasket db)
Remove one StockItem with the specified key from the Stock. |
StockItem |
CountingStockImpl.remove(java.lang.String sKey,
DataBasket db)
Remove one StockItem with the specified key from the Stock. |
T |
CatalogImpl.remove(java.lang.String sKey,
DataBasket db)
Remove the indicated item from the Catalog. |
void |
CountingStockImpl.remove(java.lang.String sKey,
int nCount,
DataBasket db)
Remove a number of items of a given key from the Stock. |
T |
StoringStockImpl.remove(T si,
DataBasket db)
Remove the given StockItem from the Stock. |
StockItem |
CountingStockImpl.remove(T si,
DataBasket db)
Remove the given StockItem from the Stock. |
T |
CatalogImpl.remove(T ci,
DataBasket db)
Remove the given item from the Catalog. |
void |
CountingStockImpl.rollbackAdd(DataBasket db,
DataBasketEntry dbe)
Rollback the adding of StockItems. |
void |
StoringStockImpl.rollbackAdd(DataBasket db,
DataBasketEntry<T> dbe)
Rollback the adding of a StockItem. |
void |
SelfManagingDBEDestination.rollbackAdd(DataBasket db,
DataBasketEntry<T> dbe)
Called when an add must be rolled back. |
void |
CatalogImpl.rollbackAdd(DataBasket db,
DataBasketEntry<T> dbe)
Roll back the adding of a CatalogItem. |
void |
CountingStockImpl.rollbackRemove(DataBasket db,
DataBasketEntry dbe)
Rollback the removal of StockItems. |
void |
StoringStockImpl.rollbackRemove(DataBasket db,
DataBasketEntry<T> dbe)
Rollback the removal of a StockItem. |
void |
SelfManagingDBESource.rollbackRemove(DataBasket db,
DataBasketEntry<T> dbe)
Called when a remove must be commited. |
void |
CatalogImpl.rollbackRemove(DataBasket db,
DataBasketEntry<T> dbe)
Roll back the removal of a CatalogItem. |
void |
AbstractNameable.setName(java.lang.String sName,
DataBasket db)
Set the Nameable's name, using help by the NameContext. |
void |
DataBasketEntryImpl.setOwner(DataBasket dbOwner)
Set the DataBasket owning this DataBasketEntry. |
int |
StockImpl.size(DataBasket db)
Get the size of this Stock. |
int |
CatalogImpl.size(DataBasket db)
Calculate the size of the Catalog. |
Value |
StockImpl.sumStock(DataBasket db,
CatalogItemValue civ,
Value vInit)
Sum up the Stock. |
void |
MoneyBagImpl.transferMoney(MoneyBag mbDest,
DataBasket db,
NumberValue nvAmount)
Tries to transfer money from this DataBasket into another one. |
protected void |
StockFromStockCreatorBT.undoFill(int nIdx,
Value v,
Stock st,
DataBasket db)
Backtracking back-step method. |
Uses of DataBasket in org.salespointframework.core.data.events |
---|
Methods in org.salespointframework.core.data.events that return DataBasket | |
---|---|
DataBasket |
StockChangeEvent.getBasket()
Get the DataBasket used for the operation. |
DataBasket |
CatalogChangeEvent.getBasket()
Get the DataBasket that was used to perform the operation. |
Constructors in org.salespointframework.core.data.events with parameters of type DataBasket | |
---|---|
CatalogChangeEvent(ListenableCatalog<T> lcSource,
T ciAffected,
DataBasket db)
Create a new CatalogChangeEvent. |
|
DataBasketEvent(DataBasket dbSource,
DataBasketEntry dbe)
Create a new DataBasketEvent. |
|
StockChangeEvent(ListenableStock<T,CT> lstSource,
DataBasket dbBasket)
Create a new StockChangeEvent. |
Uses of DataBasket in org.salespointframework.core.data.filters |
---|
Methods in org.salespointframework.core.data.filters with parameters of type DataBasket | |
---|---|
void |
CountingStockFilter.add(java.lang.String sKey,
int nCount,
DataBasket db)
Add the specified number of items to the source Stock. |
void |
CatalogFilter.add(T ci,
DataBasket db)
Add the given item to the source Catalog. |
void |
AbstractStockFilter.add(T si,
DataBasket db)
Add the given item to the source Stock. |
void |
AbstractStockFilter.addStock(Stock<T,CT> st,
DataBasket db,
boolean fRemove)
Add the given Stock to the source Stock. |
boolean |
CatalogFilter.contains(java.lang.String sKey,
DataBasket db)
Check whether the indicated item is contained in the filtered Catalog. |
boolean |
AbstractStockFilter.contains(java.lang.String sKey,
DataBasket db)
Returns (countItems (sKey, db) >= 0) . |
abstract boolean |
StoringStockFilter.contains(T si,
DataBasket db)
Filter condition: Check whether a given item is contained in the filtered Stock. |
boolean |
CountingStockFilter.contains(T si,
DataBasket db)
Check whether the filtered Stock contains the given StockItem. |
boolean |
StoringStockFilter.containsStock(Stock<T,CT> st,
DataBasket db)
Check whether the given Stock is contained in the filtered Stock. |
boolean |
CountingStockFilter.containsStock(Stock<T,CT> st,
DataBasket db)
Check whether the filtered Stock contains the given Stock. |
int |
StoringStockFilter.countItems(java.lang.String sKey,
DataBasket db)
Count all StockItems for a given key that are contained in the filtered Stock. |
abstract int |
CountingStockFilter.countItems(java.lang.String sKey,
DataBasket db)
Count the items of the given key in the filtered Stock. |
Value |
AbstractStockFilter.fillStockWithValue(DataBasket db,
Value vTarget,
StockFromValueCreator sfvc)
Fill the source Stock. |
protected void |
CatalogFilter.fireCanEditCatalogItem(T ci,
DataBasket db)
Fire the event to all listeners of this Catalog. |
protected void |
CatalogFilter.fireCanRemoveCatalogItem(T ci,
DataBasket db)
Fire the event to all listeners of this Catalog. |
protected void |
CatalogFilter.fireCatalogItemAddCommit(T ci,
DataBasket db)
Fire the event to all listeners of this Catalog. |
protected void |
CatalogFilter.fireCatalogItemAdded(T ci,
DataBasket db)
Fire the event to all listeners of this Catalog. |
protected void |
CatalogFilter.fireCatalogItemAddRollback(T ci,
DataBasket db)
Fire the event to all listeners of this Catalog. |
protected void |
CatalogFilter.fireCatalogItemRemoveCommit(T ci,
DataBasket db)
Fire the event to all listeners of this Catalog. |
protected void |
CatalogFilter.fireCatalogItemRemoved(T ci,
DataBasket db)
Fire the event to all listeners of this Catalog. |
protected void |
CatalogFilter.fireCatalogItemRemoveRollback(T ci,
DataBasket db)
Fire the event to all listeners of this Catalog. |
protected void |
CatalogFilter.fireCommitEditCatalogItem(T ci,
DataBasket db)
Fire the event to all listeners of this Catalog. |
protected void |
CatalogFilter.fireEditingCatalogItem(T ci,
DataBasket db)
Fire the event to all listeners of this Catalog. |
protected void |
CatalogFilter.fireNoEditCatalogItem(T ci,
DataBasket db)
Fire the event to all listeners of this Catalog. |
protected void |
CatalogFilter.fireNoRemoveCatalogItem(T ci,
DataBasket db)
Fire the event to all listeners of this Catalog. |
protected void |
CatalogFilter.fireRollbackEditCatalogItem(T ci,
DataBasket db)
Fire the event to all listeners of this Catalog. |
java.util.Iterator<T> |
StoringStockFilter.get(java.lang.String sKey,
DataBasket db,
boolean fForEdit)
Get all StockItems for a given key that are contained in the filtered Stock. |
java.util.Iterator<T> |
CountingStockFilter.get(java.lang.String sKey,
DataBasket db,
boolean fForEdit)
Return all items with the given key that are contained in the filtered Stock. |
T |
CatalogFilter.get(java.lang.String sKey,
DataBasket db,
boolean fForEdit)
Get the indicated item from the source Catalog if it is contained in the filtered Catalog. |
CatalogItem |
AbstractStockFilter.getAssociatedItem(DataBasket db)
Get the source Stock's associated item. |
Catalog |
AbstractStockFilter.getCatalog(DataBasket db)
Get the source Stock's Catalog. |
java.util.Iterator<T> |
CatalogFilter.iterator(DataBasket db,
boolean fForEdit)
Get an iterator of all items that are contained in the filtered Catalog. |
java.util.Iterator<T> |
AbstractStockFilter.iterator(DataBasket db,
boolean fForEdit)
Create an iterator that will return all items that match the condition. |
java.util.Set<java.lang.String> |
CatalogFilter.keySet(DataBasket db)
Return a set that contains all keys for which a CatalogItem is contained in the filtered Catalog. |
java.util.Set<java.lang.String> |
AbstractStockFilter.keySet(DataBasket db)
Get a filtered key set. |
T |
CatalogFilter.remove(java.lang.String sKey,
DataBasket db)
Remove the given item from the source Catalog if it is contained in the filtered Catalog. |
StockItem |
AbstractStockFilter.remove(java.lang.String sKey,
DataBasket db)
Remove the given item from the source Stock. |
void |
CountingStockFilter.remove(java.lang.String sKey,
int nCount,
DataBasket db)
Remove at most the specified number of items from the source Stock. |
T |
CatalogFilter.remove(T ci,
DataBasket db)
Remove the given item from the source Catalog if it is contained in the filtered Catalog. |
StockItem |
AbstractStockFilter.remove(T si,
DataBasket db)
Remove the given item from the source Stock. |
void |
CatalogFilter.setName(java.lang.String sName,
DataBasket db)
Set the source Catalog's name. |
void |
AbstractStockFilter.setName(java.lang.String sName,
DataBasket db)
Set the source Stock's name. |
int |
CatalogFilter.size(DataBasket db)
Calculate the size of the filtered Catalog. |
int |
AbstractStockFilter.size(DataBasket db)
Calculate the size of the source Stock, considering only items that match the condition. |
Value |
AbstractStockFilter.sumStock(DataBasket db,
CatalogItemValue civ,
Value vInit)
Calculate the total value of the Stock, evaluating only items that match the condition. |
Uses of DataBasket in org.salespointframework.core.data.interfaces |
---|
Subinterfaces of DataBasket in org.salespointframework.core.data.interfaces | |
---|---|
interface |
ListenableDataBasket
A DataBasket that will fire events to inform about changes to its contents. |
Methods in org.salespointframework.core.data.interfaces that return DataBasket | |
---|---|
DataBasket |
DataBasketEntry.getOwner()
Return the DataBasket containing this DataBasketEntry. |
Methods in org.salespointframework.core.data.interfaces with parameters of type DataBasket | |
---|---|
void |
CountingStock.add(java.lang.String sKey,
int nCount,
DataBasket db)
Add a number of items of a given key to the Stock. |
void |
Stock.add(T si,
DataBasket db)
Add an item to the Stock. |
void |
Catalog.add(T ci,
DataBasket db)
Add a CatalogItem to the Catalog. |
void |
Stock.addStock(Stock<T,CT> st,
DataBasket db,
boolean fRemove)
Add the contents of a Stock to this Stock. |
void |
NameContext.checkNameChange(DataBasket db,
java.lang.String sOldName,
java.lang.String sNewName)
Check a name change for compliance with the rules of this NameContext. |
boolean |
Stock.contains(java.lang.String sKey,
DataBasket db)
Check whether the Stock contains an item with the given key. |
boolean |
Catalog.contains(java.lang.String sKey,
DataBasket db)
Check whether the Catalog contains a certain CatalogItem. |
boolean |
Stock.contains(T si,
DataBasket db)
Check whether the Stock contains the given StockItem. |
boolean |
Stock.containsStock(Stock<T,CT> st,
DataBasket db)
Check whether the given Stock is completely contained in this Stock. |
int |
Stock.countItems(java.lang.String sKey,
DataBasket db)
Count the StockItems with a given key that are visible using a given DataBasket. |
Value |
StockFromValueCreator.fillStock(Stock st,
Value v,
DataBasket db)
The actual algorithm. |
Value |
Stock.fillStockWithValue(DataBasket db,
Value vTarget,
StockFromValueCreator sfvc)
Increase the Stock's value by a given value. |
java.util.Iterator<T> |
Stock.get(java.lang.String sKey,
DataBasket db,
boolean fForEdit)
Iterate all items with a given key. |
T |
Catalog.get(java.lang.String sKey,
DataBasket db,
boolean fForEdit)
Get a CatalogItem by its key. |
CatalogItem |
StockItem.getAssociatedItem(DataBasket db)
Get the CatalogItem that is associated to this StockItem. |
Catalog |
Stock.getCatalog(DataBasket db)
Get the Catalog associated to this Stock. |
java.util.Iterator<T> |
Stock.iterator(DataBasket db,
boolean fForEdit)
Iterate all items in the Stock. |
java.util.Iterator<T> |
Catalog.iterator(DataBasket db,
boolean fForEdit)
Return an iterator of all items in the Catalog. |
java.util.Set<java.lang.String> |
Stock.keySet(DataBasket db)
Return the set of keys for which StockItems are visible using the given DataBasket. |
java.util.Set<java.lang.String> |
Catalog.keySet(DataBasket db)
Get a set of all keys currently in the Catalog. |
void |
NameContext.nameHasChanged(DataBasket db,
java.lang.String sOldName,
java.lang.String sNewName)
Indicate a successful name change. |
StockItem |
Stock.remove(java.lang.String sKey,
DataBasket db)
Remove one StockItem with the specified key from the Stock. |
T |
Catalog.remove(java.lang.String sKey,
DataBasket db)
Remove a CatalogItem from the Catalog. |
void |
CountingStock.remove(java.lang.String sKey,
int nCount,
DataBasket db)
Remove a number of items of a given key from the Stock. |
StockItem |
Stock.remove(T si,
DataBasket db)
Remove the given StockItem from the Stock. |
T |
Catalog.remove(T ci,
DataBasket db)
Remove a CatalogItem from the Catalog. |
void |
Nameable.setName(java.lang.String sName,
DataBasket db)
Set the Nameable's name. |
void |
DataBasketEntry.setOwner(DataBasket dbOwner)
Notification that the DataBasketEntry was put into a DataBasket. |
int |
Stock.size(DataBasket db)
Get the size of this Stock. |
int |
Catalog.size(DataBasket db)
Calculate the size of the Catalog. |
Value |
Stock.sumStock(DataBasket db,
CatalogItemValue civ,
Value vInit)
Sum up the Stock. |
void |
MoneyBag.transferMoney(MoneyBag mbDest,
DataBasket db,
NumberValue nvAmount)
Tries to transfer money from this DataBasket into another one. |
Uses of DataBasket in org.salespointframework.desktop |
---|
Constructors in org.salespointframework.desktop with parameters of type DataBasket | |
---|---|
JCatalogListView(Catalog c,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
JListView.ListViewOrientation orientation,
javax.swing.ListCellRenderer renderer)
constructor |
|
JCatalogListView(Catalog c,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
JListView.ListViewOrientation orientation,
javax.swing.ListCellRenderer renderer,
boolean categorize,
Category defaultCategory)
constructor |
|
JCatalogTable(Catalog c,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
TableEntryDescriptor ted)
Create a new JCatalogTable. |
|
JCountingStockListView(CountingStock<StockItem,CatalogItem> stock,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
boolean showZeros,
JListView.ListViewOrientation orientation,
javax.swing.ListCellRenderer renderer)
default constructor |
|
JCountingStockListView(CountingStock<StockItem,CatalogItem> stock,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
boolean showZeros,
JListView.ListViewOrientation orientation,
javax.swing.ListCellRenderer renderer,
boolean categorize,
Category defaultCategory)
default constructor |
|
JCountingStockTable(CountingStock cs,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
boolean fShowZeros,
TableEntryDescriptor ted)
Create a new JCountingStockTable. |
|
JDataBasketListView(DataBasket db)
default constructor |
|
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. |
|
JStoringStockListView(Stock stock,
DataBasket db,
java.util.Comparator<StockItem> cmp,
JListView.ListViewOrientation orientation,
javax.swing.ListCellRenderer renderer)
default constructor |
|
JStoringStockListView(Stock stock,
DataBasket db,
java.util.Comparator<StockItem> cmp,
JListView.ListViewOrientation orientation,
javax.swing.ListCellRenderer renderer,
boolean categorize,
Category defaultCategory)
default constructor |
|
JStoringStockTable(Stock st,
DataBasket db,
java.util.Comparator<StockItem> cmp,
TableEntryDescriptor ted)
Create a new JStoringStockTable. |
Uses of DataBasket in org.salespointframework.desktop.formsheets |
---|
Methods in org.salespointframework.desktop.formsheets that return DataBasket | |
---|---|
DataBasket |
SingleTableFormSheet.getDataBasket()
Get the currently attached DataBasket. |
DataBasket |
ListViewFormSheet.getDataBasket()
get databasket used for visibility |
DataBasket |
DataExchangeFormSheet.getDataBasket()
Get the currently attached DataBasket. |
Methods in org.salespointframework.desktop.formsheets with parameters of type DataBasket | |
---|---|
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
Catalog cSource,
Catalog cDest,
DataBasket db,
UIGate uigGate,
CCStrategy ccsMoveStrategy,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where source and destination are Catalogs. |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
Catalog cSource,
Catalog cDest,
DataBasket db,
UIGate uigGate,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where source and destination are Catalogs. |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
Catalog cSource,
CountingStock csDest,
DataBasket db,
UIGate uigGate,
CCSStrategy ccssMoveStrategy,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where the source is a Catalog and the destination is a CountingStock. |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
Catalog cSource,
CountingStock csDest,
DataBasket db,
UIGate uigGate,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where the source is a Catalog and the destination is a CountingStock. |
static ListViewFormSheet |
ListViewFormSheet.create(java.lang.String caption,
Catalog c,
DataBasket db)
create an instance of ListViewFormSheet from a Catalog source |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
Catalog cSource,
DataBasket dbDest,
UIGate uigGate,
CDBStrategy cdbsMoveStrategy,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where the source is a Catalog and the destination is a DataBasket. |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
Catalog cSource,
DataBasket dbDest,
UIGate uigGate,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where the source is a Catalog and the destination is a DataBasket. |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
Catalog cSource,
StoringStock ssDest,
DataBasket db,
UIGate uigGate,
CSSStrategy csssMoveStrategy,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where the source is a Catalog and the destination is a StoringStock. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
Catalog c,
UIGate uigGate,
DataBasket db)
Create and return a new SingleTableFormSheet that will display the contents of a Catalog. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
Catalog c,
UIGate uigGate,
DataBasket db,
java.util.Comparator<CatalogItem> cmp)
Create and return a new SingleTableFormSheet that will display the contents of a Catalog. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
Catalog c,
UIGate uigGate,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
TableEntryDescriptor ted)
Create and return a new SingleTableFormSheet that will display the contents of a Catalog. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
Catalog c,
UIGate uigGate,
DataBasket db,
TableEntryDescriptor ted)
Create and return a new SingleTableFormSheet that will display the contents of a Catalog. |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
CountingStock csSource,
CountingStock csDest,
DataBasket db,
UIGate uigGate,
CSCSStrategy cscssMoveStrategy,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where source and destination are CountingStocks. |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
CountingStock csSource,
CountingStock csDest,
DataBasket db,
UIGate uigGate,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where source and destination are CountingStocks. |
static ListViewFormSheet |
ListViewFormSheet.create(java.lang.String caption,
CountingStock stock,
DataBasket db)
create a new instance of ListViewFormSheet from a CountingStock source |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
CountingStock csSource,
DataBasket dbDest,
UIGate uigGate,
CSDBStrategy csdbsMoveStrategy,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where the source is a CountingStock and the destination is a DataBasket. |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
CountingStock csSource,
DataBasket dbDest,
UIGate uigGate,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where the source is a CountingStocks and the destination is a DataBasket. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
CountingStock cs,
UIGate uigGate,
DataBasket db)
Create and return a new SingleTableFormSheet that will display the contents of a CountingStock. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
CountingStock cs,
UIGate uigGate,
DataBasket db,
boolean fShowZeros)
Create and return a new SingleTableFormSheet that will display the contents of a CountingStock. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
CountingStock cs,
UIGate uigGate,
DataBasket db,
boolean fShowZeros,
TableEntryDescriptor ted)
Create and return a new SingleTableFormSheet that will display the contents of a CountingStock. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
CountingStock cs,
UIGate uigGate,
DataBasket db,
java.util.Comparator<CatalogItem> cmp)
Create and return a new SingleTableFormSheet that will display the contents of a CountingStock. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
CountingStock cs,
UIGate uigGate,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
boolean fShowZeros)
Create and return a new SingleTableFormSheet that will display the contents of a CountingStock. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
CountingStock cs,
UIGate uigGate,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
boolean fShowZeros,
TableEntryDescriptor ted)
Create and return a new SingleTableFormSheet that will display the contents of a CountingStock. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
CountingStock cs,
UIGate uigGate,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
TableEntryDescriptor ted)
Create and return a new SingleTableFormSheet that will display the contents of a CountingStock. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
CountingStock cs,
UIGate uigGate,
DataBasket db,
TableEntryDescriptor ted)
Create and return a new SingleTableFormSheet that will display the contents of a CountingStock. |
static ListViewFormSheet |
ListViewFormSheet.create(java.lang.String caption,
DataBasket db)
creates a new instance of ListViewFormSheet from a DataBasket source |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
DataBasket dbSource,
Catalog cDest,
UIGate uigGate,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where the source is a DataBasket and the destination is a Catalog. |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
DataBasket dbSource,
Catalog cDest,
UIGate uigGate,
DBCStrategy dbcsMoveStrategy,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where the source is a DataBasket and the destination is a Catalog. |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
DataBasket dbSource,
CountingStock csDest,
UIGate uigGate,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where the source is a DataBasket and the destination is a CountingStock. |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
DataBasket dbSource,
CountingStock csDest,
UIGate uigGate,
DBCSStrategy dbcssMoveStrategy,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where the source is a DataBasket and the destination is a CountingStock. |
static ListViewFormSheet |
ListViewFormSheet.create(java.lang.String caption,
DataBasket db,
DataBasketCondition dbc)
creates a new instance of ListViewFormSheet from a DataBasket source |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
DataBasket dbSource,
StoringStock ssDest,
UIGate uigGate,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where the source is a DataBasket and the destination is a StoringStock. |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
DataBasket dbSource,
StoringStock ssDest,
UIGate uigGate,
DBSSStrategy dbsssMoveStrategy,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where the source is a DataBasket and the destination is a StoringStock. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
DataBasket db,
UIGate uigGate,
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,
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 SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
DataBasket db,
UIGate uigGate,
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,
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,
TableEntryDescriptor ted)
Create and return a new SingleTableFormSheet that will display the contents of a DataBasket. |
static ListViewFormSheet |
ListViewFormSheet.create(java.lang.String caption,
StoringStock stock,
DataBasket db)
creates a new instance of ListViewFormSheet from a StoringStock source |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
StoringStock ssSource,
DataBasket dbDest,
UIGate uigGate,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where the source is a StoringStock and the destination is a DataBasket. |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
StoringStock ssSource,
DataBasket dbDest,
UIGate uigGate,
SSDBStrategy ssdbsMoveStrategy,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where the source is a StoringStock and the destination is a DataBasket. |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
StoringStock ssSource,
StoringStock ssDest,
DataBasket db,
UIGate uigGate,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where source and destination are StoringStocks. |
static DataExchangeFormSheet |
DataExchangeFormSheet.create(java.lang.String sCaption,
StoringStock ssSource,
StoringStock ssDest,
DataBasket db,
UIGate uigGate,
SSSSStrategy sssssMoveStrategy,
DataExchangeFormSheet.DataExchangeOptions options)
Create and return a new DataExchangeFormSheet where source and destination are StoringStocks. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
StoringStock ss,
UIGate uigGate,
DataBasket db)
Create and return a new SingleTableFormSheet that will display the contents of a StoringStock. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
StoringStock ss,
UIGate uigGate,
DataBasket db,
java.util.Comparator<StockItem> cmp)
Create and return a new SingleTableFormSheet that will display the contents of a StoringStock. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
StoringStock ss,
UIGate uigGate,
DataBasket db,
java.util.Comparator<StockItem> cmp,
TableEntryDescriptor ted)
Create and return a new SingleTableFormSheet that will display the contents of a StoringStock. |
static SingleTableFormSheet |
SingleTableFormSheet.create(java.lang.String sCaption,
StoringStock ss,
UIGate uigGate,
DataBasket db,
TableEntryDescriptor ted)
Create and return a new SingleTableFormSheet that will display the contents of a StoringStock. |
static ListViewFormSheet |
ListViewFormSheet.create(java.lang.String caption,
UIGate uiGate,
Catalog c,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
JListView.ListViewOrientation orientation,
javax.swing.ListCellRenderer renderer)
create an instance of ListViewFormSheet from a Catalog source |
static ListViewFormSheet |
ListViewFormSheet.create(java.lang.String caption,
UIGate uiGate,
Catalog c,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
JListView.ListViewOrientation orientation,
javax.swing.ListCellRenderer renderer,
boolean categorize,
Category defaultCategory)
create an instance of ListViewFormSheet from a Catalog source |
static ListViewFormSheet |
ListViewFormSheet.create(java.lang.String caption,
UIGate uiGate,
CountingStock stock,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
boolean showZeros,
JListView.ListViewOrientation orientation,
javax.swing.ListCellRenderer renderer)
create a new instance of ListViewFormSheet from a CountingStock source |
static ListViewFormSheet |
ListViewFormSheet.create(java.lang.String caption,
UIGate uiGate,
CountingStock stock,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
boolean showZeros,
JListView.ListViewOrientation orientation,
javax.swing.ListCellRenderer renderer,
boolean categorize,
Category defaulCategory)
create a new instance of ListViewFormSheet from a CountingStock 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)
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 |
static ListViewFormSheet |
ListViewFormSheet.create(java.lang.String caption,
UIGate uiGate,
StoringStock stock,
DataBasket db,
java.util.Comparator<StockItem> cmp,
JListView.ListViewOrientation orientation,
javax.swing.ListCellRenderer renderer)
creates a new instance of ListViewFormSheet from a StoringStock source |
static ListViewFormSheet |
ListViewFormSheet.create(java.lang.String caption,
UIGate uiGate,
StoringStock stock,
DataBasket db,
java.util.Comparator<StockItem> cmp,
JListView.ListViewOrientation orientation,
javax.swing.ListCellRenderer renderer,
boolean categorize,
Category defaultCategory)
creates a new instance of ListViewFormSheet from a StoringStock source |
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. |
Uses of DataBasket in org.salespointframework.desktop.models |
---|
Fields in org.salespointframework.desktop.models declared as DataBasket | |
---|---|
protected DataBasket |
StoringStockListModel.db
databasket used for visibility |
protected DataBasket |
DataBasketListModel.db
databasket source |
protected DataBasket |
CountingStockListModel.db
databasket used for visibility |
protected DataBasket |
CatalogListModel.db
databasket used for visibility |
protected DataBasket |
StoringStockTableModel.m_dbBasket
The DataBasket used to determine visibility. |
protected DataBasket |
DataBasketTableModel.m_dbBasket
The DataBasket being modelled. |
protected DataBasket |
CountingStockTableModel.m_dbBasket
The DataBasket used to determine visibility. |
protected DataBasket |
CatalogTableModel.m_dbBasket
The DataBasket used to determine visibility. |
Methods in org.salespointframework.desktop.models with parameters of type DataBasket | |
---|---|
void |
CountingStockTableModel.Record.setName(java.lang.String sName,
DataBasket db)
|
Constructors in org.salespointframework.desktop.models with parameters of type DataBasket | |
---|---|
CatalogListModel(Catalog c,
DataBasket db,
java.util.Comparator<CatalogItem> cmp)
constructor |
|
CatalogListModel(Catalog c,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
boolean categorize,
Category defaultCategory)
constructor |
|
CatalogTableModel(Catalog c,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
TableEntryDescriptor ted)
Create a new CatalogTableModel. |
|
CountingStockListModel(CountingStock<StockItem,CatalogItem> stock,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
boolean showZeros)
constructor |
|
CountingStockListModel(CountingStock<StockItem,CatalogItem> stock,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
boolean showZeros,
boolean categorize,
Category defaultCategory)
constructor |
|
CountingStockTableModel(CountingStock cs,
DataBasket db,
java.util.Comparator<CatalogItem> cmp,
boolean fShowZeros,
TableEntryDescriptor ted)
Create a new CountingStockTableModel. |
|
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. |
|
StoringStockListModel(Stock stock,
DataBasket db,
java.util.Comparator<StockItem> cmp)
default constructor |
|
StoringStockListModel(Stock stock,
DataBasket db,
java.util.Comparator<StockItem> cmp,
boolean categorize,
Category defaultCategory)
constructor |
|
StoringStockTableModel(Stock st,
DataBasket db,
java.util.Comparator<StockItem> cmp,
TableEntryDescriptor ted)
Create a new StoringStockTableModel. |
Uses of DataBasket in org.salespointframework.desktop.strategies |
---|
Methods in org.salespointframework.desktop.strategies with parameters of type DataBasket | |
---|---|
protected void |
DefaultRemoveCatalogItemStrategy.doRemove(SaleProcess p,
CatalogItem ci,
DataBasket db)
Perform the actual removal. |
Uses of DataBasket in org.salespointframework.desktop.strategies.dataexchangeformsheet |
---|
Methods in org.salespointframework.desktop.strategies.dataexchangeformsheet with parameters of type DataBasket | |
---|---|
protected int |
CCStrategy.checkMove(SaleProcess p,
SalesPoint sp,
Catalog cSource,
Catalog cDest,
DataBasket db,
CatalogItem ci)
Check whether the indicated move is allowable. |
protected int |
CSCSStrategy.checkMove(SaleProcess p,
SalesPoint sp,
CountingStock csSource,
CountingStock csDest,
DataBasket db,
CatalogItem ci,
int nCount)
Check whether the indicated move is allowable. |
protected int |
SSSSStrategy.checkMove(SaleProcess p,
SalesPoint sp,
StoringStock ssSource,
StoringStock ssDest,
DataBasket db,
StockItem si)
Check whether the indicated move is allowable. |
protected int |
CCSStrategy.checkMoveToDest(SaleProcess p,
SalesPoint sp,
Catalog cSource,
CountingStock csDest,
DataBasket db,
CatalogItem ci,
int nCount)
Check whether the indicated move is allowable. |
protected int |
CDBStrategy.checkMoveToDest(SaleProcess p,
SalesPoint sp,
Catalog cSource,
DataBasket dbDest,
CatalogItem ci)
Check whether the indicated move is allowable. |
protected int |
CSSStrategy.checkMoveToDest(SaleProcess p,
SalesPoint sp,
Catalog cSource,
StoringStock ssDest,
DataBasket db,
CatalogItem ci)
Check whether the indicated move is allowable. |
protected int |
CSDBStrategy.checkMoveToDest(SaleProcess p,
SalesPoint sp,
CountingStock csSource,
DataBasket dbDest,
CatalogItem ci,
int nCount)
Check whether the indicated move is allowable. |
protected int |
DBCStrategy.checkMoveToDest(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
Catalog cDest,
CatalogItem ci)
Check whether the indicated move is allowable. |
protected int |
DBCSStrategy.checkMoveToDest(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
CountingStock csDest,
DataBasketEntry dbe,
int nCount)
Check whether the indicated move is allowable. |
protected int |
DBSSStrategy.checkMoveToDest(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
StoringStock ssDest,
DataBasketEntry dbe)
Check whether the indicated move is allowable. |
protected int |
SSDBStrategy.checkMoveToDest(SaleProcess p,
SalesPoint sp,
StoringStock ssSource,
DataBasket dbDest,
StockItem si)
Check whether the indicated move is allowable. |
protected int |
CCSStrategy.checkMoveToSource(SaleProcess p,
SalesPoint sp,
Catalog cSource,
CountingStock csDest,
DataBasket db,
CatalogItem ci,
int nCount)
Check whether the indicated move is allowable. |
protected int |
CDBStrategy.checkMoveToSource(SaleProcess p,
SalesPoint sp,
Catalog cSource,
DataBasket dbDest,
CatalogItem ci)
Check whether the indicated move is allowable. |
protected int |
CSSStrategy.checkMoveToSource(SaleProcess p,
SalesPoint sp,
Catalog cSource,
StoringStock ssDest,
DataBasket db,
StockItem si)
Check whether the indicated move is allowable. |
protected int |
CSDBStrategy.checkMoveToSource(SaleProcess p,
SalesPoint sp,
CountingStock csSource,
DataBasket dbDest,
DataBasketEntry dbe,
int nCount)
Check whether the indicated move is allowable. |
protected int |
DBCStrategy.checkMoveToSource(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
Catalog cDest,
CatalogItem ci)
Check whether the indicated move is allowable. |
protected int |
DBCSStrategy.checkMoveToSource(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
CountingStock csDest,
CatalogItem ci,
int nCount)
Check whether the indicated move is allowable. |
protected int |
DBSSStrategy.checkMoveToSource(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
StoringStock ssDest,
StockItem si)
Check whether the indicated move is allowable. |
protected int |
SSDBStrategy.checkMoveToSource(SaleProcess p,
SalesPoint sp,
StoringStock ssSource,
DataBasket dbDest,
DataBasketEntry dbe)
Check whether the indicated move is allowable. |
protected abstract StockItem |
CSSStrategy.createStockItem(SaleProcess p,
SalesPoint sp,
Catalog cSource,
StoringStock ssDest,
DataBasket db,
CatalogItem ci)
Create a fresh StockItem following the specifications given. |
protected Gate |
CCStrategy.getCheckMoveGate(SaleProcess p,
SalesPoint sp,
Catalog cSource,
Catalog cDest,
DataBasket db,
CatalogItem ci,
DataExchangeFormSheet ttfs)
Get the first gate of a sub-process that will move items from one Catalog into another. |
protected Gate |
CSCSStrategy.getCheckMoveGate(SaleProcess p,
SalesPoint sp,
CountingStock csSource,
CountingStock csDest,
DataBasket db,
CatalogItem ci,
int nCount,
DataExchangeFormSheet ttfs)
Get the first gate of a sub-process that will move items from one Stock into another. |
protected Gate |
SSSSStrategy.getCheckMoveGate(SaleProcess p,
SalesPoint sp,
StoringStock ssSource,
StoringStock ssDest,
DataBasket db,
StockItem si,
DataExchangeFormSheet ttfs)
Get the first gate of a sub-process that will move items from one Stock into another. |
protected Gate |
CCStrategy.getCheckMoveToDestGate(SaleProcess p,
SalesPoint sp,
Catalog cSource,
Catalog cDest,
DataBasket db,
CatalogItem ci,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the source to the destination. |
protected Gate |
CCSStrategy.getCheckMoveToDestGate(SaleProcess p,
SalesPoint sp,
Catalog cSource,
CountingStock csDest,
DataBasket db,
CatalogItem ci,
int nCount,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the source to the destination. |
protected Gate |
CDBStrategy.getCheckMoveToDestGate(SaleProcess p,
SalesPoint sp,
Catalog cSource,
DataBasket dbDest,
CatalogItem ci,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the source to the destination. |
protected Gate |
CSSStrategy.getCheckMoveToDestGate(SaleProcess p,
SalesPoint sp,
Catalog cSource,
StoringStock ssDest,
DataBasket db,
CatalogItem ci,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the source to the destination. |
protected Gate |
CSCSStrategy.getCheckMoveToDestGate(SaleProcess p,
SalesPoint sp,
CountingStock csSource,
CountingStock csDest,
DataBasket db,
CatalogItem ci,
int nCount,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the source to the destination. |
protected Gate |
CSDBStrategy.getCheckMoveToDestGate(SaleProcess p,
SalesPoint sp,
CountingStock csSource,
DataBasket dbDest,
CatalogItem ci,
int nCount,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the source to the destination. |
protected Gate |
DBCStrategy.getCheckMoveToDestGate(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
Catalog cDest,
CatalogItem ci,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the source to the destination. |
protected Gate |
DBCSStrategy.getCheckMoveToDestGate(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
CountingStock csDest,
DataBasketEntry dbe,
int nCount,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the source to the destination. |
protected Gate |
DBSSStrategy.getCheckMoveToDestGate(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
StoringStock ssDest,
DataBasketEntry dbe,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the source to the destination. |
protected Gate |
SSDBStrategy.getCheckMoveToDestGate(SaleProcess p,
SalesPoint sp,
StoringStock ssSource,
DataBasket dbDest,
StockItem si,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the source to the destination. |
protected Gate |
SSSSStrategy.getCheckMoveToDestGate(SaleProcess p,
SalesPoint sp,
StoringStock ssSource,
StoringStock ssDest,
DataBasket db,
StockItem si,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the source to the destination. |
protected Gate |
CCStrategy.getCheckMoveToSourceGate(SaleProcess p,
SalesPoint sp,
Catalog cSource,
Catalog cDest,
DataBasket db,
CatalogItem ci,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the destination to the source. |
protected Gate |
CCSStrategy.getCheckMoveToSourceGate(SaleProcess p,
SalesPoint sp,
Catalog cSource,
CountingStock csDest,
DataBasket db,
CatalogItem ci,
int nCount,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the destination to the source. |
protected Gate |
CDBStrategy.getCheckMoveToSourceGate(SaleProcess p,
SalesPoint sp,
Catalog cSource,
DataBasket dbDest,
CatalogItem ci,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the destination to the source. |
protected Gate |
CSSStrategy.getCheckMoveToSourceGate(SaleProcess p,
SalesPoint sp,
Catalog cSource,
StoringStock ssDest,
DataBasket db,
StockItem si,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the destination to the source. |
protected Gate |
CSCSStrategy.getCheckMoveToSourceGate(SaleProcess p,
SalesPoint sp,
CountingStock csSource,
CountingStock csDest,
DataBasket db,
CatalogItem ci,
int nCount,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the destination to the source. |
protected Gate |
CSDBStrategy.getCheckMoveToSourceGate(SaleProcess p,
SalesPoint sp,
CountingStock csSource,
DataBasket dbDest,
DataBasketEntry dbe,
int nCount,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the destination to the source. |
protected Gate |
DBCStrategy.getCheckMoveToSourceGate(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
Catalog cDest,
CatalogItem ci,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the destination to the source. |
protected Gate |
DBCSStrategy.getCheckMoveToSourceGate(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
CountingStock csDest,
CatalogItem ci,
int nCount,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the destination to the source. |
protected Gate |
DBSSStrategy.getCheckMoveToSourceGate(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
StoringStock ssDest,
StockItem si,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the destination to the source. |
protected Gate |
SSDBStrategy.getCheckMoveToSourceGate(SaleProcess p,
SalesPoint sp,
StoringStock ssSource,
DataBasket dbDest,
DataBasketEntry dbe,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the destination to the source. |
protected Gate |
SSSSStrategy.getCheckMoveToSourceGate(SaleProcess p,
SalesPoint sp,
StoringStock ssSource,
StoringStock ssDest,
DataBasket db,
StockItem si,
DataExchangeFormSheet ttfs)
Get the first gate of the sub-process that will move items from the destination to the source. |
Transition |
CCStrategy.getMoveToDestProcess(SaleProcess p,
SalesPoint sp,
Catalog cSource,
Catalog cDest,
DataBasket db,
CatalogItem ci,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the source to the destination. |
Transition |
CCSStrategy.getMoveToDestProcess(SaleProcess p,
SalesPoint sp,
Catalog cSource,
CountingStock csDest,
DataBasket db,
CatalogItem ci,
int nCount,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the source to the destination. |
Transition |
CDBStrategy.getMoveToDestProcess(SaleProcess p,
SalesPoint sp,
Catalog cSource,
DataBasket dbDest,
CatalogItem ci,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the source to the destination. |
Transition |
CSSStrategy.getMoveToDestProcess(SaleProcess p,
SalesPoint sp,
Catalog cSource,
StoringStock ssDest,
DataBasket db,
CatalogItem ci,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the source to the destination. |
Transition |
CSCSStrategy.getMoveToDestProcess(SaleProcess p,
SalesPoint sp,
CountingStock csSource,
CountingStock csDest,
DataBasket db,
CatalogItem ci,
int nCount,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the source to the destination. |
Transition |
CSDBStrategy.getMoveToDestProcess(SaleProcess p,
SalesPoint sp,
CountingStock csSource,
DataBasket dbDest,
CatalogItem ci,
int nCount,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the source to the destination. |
Transition |
DBCStrategy.getMoveToDestProcess(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
Catalog cDest,
CatalogItem ci,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the source to the destination. |
Transition |
DBCSStrategy.getMoveToDestProcess(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
CountingStock csDest,
DataBasketEntry dbe,
int nCount,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the source to the destination. |
Transition |
DBSSStrategy.getMoveToDestProcess(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
StoringStock ssDest,
DataBasketEntry dbe,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the source to the destination. |
Transition |
SSDBStrategy.getMoveToDestProcess(SaleProcess p,
SalesPoint sp,
StoringStock ssSource,
DataBasket dbDest,
StockItem si,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the source to the destination. |
Transition |
SSSSStrategy.getMoveToDestProcess(SaleProcess p,
SalesPoint sp,
StoringStock ssSource,
StoringStock ssDest,
DataBasket db,
StockItem si,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the source to the destination. |
Transition |
CCStrategy.getMoveToSourceProcess(SaleProcess p,
SalesPoint sp,
Catalog cSource,
Catalog cDest,
DataBasket db,
CatalogItem ci,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the destination to the source. |
Transition |
CCSStrategy.getMoveToSourceProcess(SaleProcess p,
SalesPoint sp,
Catalog cSource,
CountingStock csDest,
DataBasket db,
CatalogItem ci,
int nCount,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the destination to the source. |
Transition |
CDBStrategy.getMoveToSourceProcess(SaleProcess p,
SalesPoint sp,
Catalog cSource,
DataBasket dbDest,
CatalogItem ci,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the destination to the source. |
Transition |
CSSStrategy.getMoveToSourceProcess(SaleProcess p,
SalesPoint sp,
Catalog cSource,
StoringStock ssDest,
DataBasket db,
StockItem si,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the destination to the source. |
Transition |
CSCSStrategy.getMoveToSourceProcess(SaleProcess p,
SalesPoint sp,
CountingStock csSource,
CountingStock csDest,
DataBasket db,
CatalogItem ci,
int nCount,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the destination to the source. |
Transition |
CSDBStrategy.getMoveToSourceProcess(SaleProcess p,
SalesPoint sp,
CountingStock csSource,
DataBasket dbDest,
DataBasketEntry dbe,
int nCount,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the destination to the source. |
Transition |
DBCStrategy.getMoveToSourceProcess(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
Catalog cDest,
CatalogItem ci,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the destination to the source. |
Transition |
DBCSStrategy.getMoveToSourceProcess(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
CountingStock csDest,
CatalogItem ci,
int nCount,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the destination to the source. |
Transition |
DBSSStrategy.getMoveToSourceProcess(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
StoringStock ssDest,
StockItem si,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the destination to the source. |
Transition |
SSDBStrategy.getMoveToSourceProcess(SaleProcess p,
SalesPoint sp,
StoringStock ssSource,
DataBasket dbDest,
DataBasketEntry dbe,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the destination to the source. |
Transition |
SSSSStrategy.getMoveToSourceProcess(SaleProcess p,
SalesPoint sp,
StoringStock ssSource,
StoringStock ssDest,
DataBasket db,
StockItem si,
DataExchangeFormSheet ttfs)
Get the sub-process that will move items from the destination to the source. |
protected void |
CCStrategy.moveImpl(SaleProcess p,
SalesPoint sp,
Catalog cSource,
Catalog cDest,
DataBasket db,
CatalogItem ci)
Move the indicated item from the source Catalog into the destination Catalog. |
protected void |
CSCSStrategy.moveImpl(SaleProcess p,
SalesPoint sp,
CountingStock csSource,
CountingStock csDest,
DataBasket db,
CatalogItem ci,
int nCount)
Move the indicated number of items from the source CountingStock into the destination CountingStock. |
protected void |
SSSSStrategy.moveImpl(SaleProcess p,
SalesPoint sp,
StoringStock ssSource,
StoringStock ssDest,
DataBasket db,
StockItem si)
Move the indicated item from the source StoringStock into the destination StoringStock. |
protected void |
CCSStrategy.moveToDest(SaleProcess p,
SalesPoint sp,
Catalog cSource,
CountingStock csDest,
DataBasket db,
CatalogItem ci,
int nCount)
Move the indicated number of items as indicated into the destination Stock. |
protected void |
CDBStrategy.moveToDest(SaleProcess p,
SalesPoint sp,
Catalog cSource,
DataBasket dbDest,
CatalogItem ci)
Move the indicated item from source to destination. |
protected void |
CSSStrategy.moveToDest(SaleProcess p,
SalesPoint sp,
Catalog cSource,
StoringStock ssDest,
DataBasket db,
StockItem si)
Move the item as indicated into the destination Stock. |
protected void |
CSDBStrategy.moveToDest(SaleProcess p,
SalesPoint sp,
CountingStock csSource,
DataBasket dbDest,
CatalogItem ci,
int nCount)
Move the indicated number of items as indicated into the destination DataBasket. |
protected void |
DBCStrategy.moveToDest(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
Catalog cDest,
CatalogItem ci)
Move the item into the destination Catalog. |
protected void |
DBCSStrategy.moveToDest(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
CountingStock csDest,
DataBasketEntry dbe,
int nCount)
Move the indicated number of items as indicated into the destination Stock. |
protected void |
DBSSStrategy.moveToDest(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
StoringStock ssDest,
DataBasketEntry dbe)
Move the indicated item into the destination Stock. |
protected void |
SSDBStrategy.moveToDest(SaleProcess p,
SalesPoint sp,
StoringStock ssSource,
DataBasket dbDest,
StockItem si)
Move the indicated item from the source Stock. |
protected void |
CCSStrategy.moveToSource(SaleProcess p,
SalesPoint sp,
Catalog cSource,
CountingStock csDest,
DataBasket db,
CatalogItem ci,
int nCount)
Move the indicated number of items as indicated from the destination Stock. |
protected void |
CDBStrategy.moveToSource(SaleProcess p,
SalesPoint sp,
Catalog cSource,
DataBasket dbDest,
CatalogItem ci)
Move the indicated item from the destination to the source. |
protected void |
CSSStrategy.moveToSource(SaleProcess p,
SalesPoint sp,
Catalog cSource,
StoringStock ssDest,
DataBasket db,
StockItem si)
Move the indicated item as indicated from the destination Stock. |
protected void |
CSDBStrategy.moveToSource(SaleProcess p,
SalesPoint sp,
CountingStock csSource,
DataBasket dbDest,
DataBasketEntry dbe,
int nCount)
Move the indicated number of items as indicated from the source into the destination. |
protected void |
DBCStrategy.moveToSource(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
Catalog cDest,
CatalogItem ci)
Move the indicated item from the destination Catalog. |
protected void |
DBCSStrategy.moveToSource(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
CountingStock csDest,
CatalogItem ci,
int nCount)
Move the indicated number of items as indicated from the destination Stock. |
protected void |
DBSSStrategy.moveToSource(SaleProcess p,
SalesPoint sp,
DataBasket dbSource,
StoringStock ssDest,
StockItem si)
Move the indicated item from the destination Stock. |
protected void |
SSDBStrategy.moveToSource(SaleProcess p,
SalesPoint sp,
StoringStock ssSource,
DataBasket dbDest,
DataBasketEntry dbe)
Move the indicated item into the source Stock. |
Uses of DataBasket in org.salespointframework.web.helper |
---|
Methods in org.salespointframework.web.helper with parameters of type DataBasket | |
---|---|
ATMBuilder<T> |
ATMBuilder.db(DataBasket dataBasket)
method chaining version of ATMBuilder.setDataBasket(DataBasket) |
void |
ATMBuilder.setDataBasket(DataBasket dataBasket)
sets a dataBasket |
Uses of DataBasket in org.salespointframework.web.movestrategies |
---|
Methods in org.salespointframework.web.movestrategies with parameters of type DataBasket | |
---|---|
protected StockItem |
CSSStrategy.createStockItem(SaleProcess p,
SalesPoint sp,
Catalog cSource,
StoringStock ssDest,
DataBasket db,
CatalogItem ci)
|
boolean |
SSSSStrategy.moveToDestination(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
SSDBStrategy.moveToDestination(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
SSCSStrategy.moveToDestination(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
MoveStrategy.moveToDestination(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
moves the item with the given name from source to destination |
boolean |
DBSSStrategy.moveToDestination(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
DBCStrategy.moveToDestination(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
DBCSStrategy.moveToDestination(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
CSSStrategy.moveToDestination(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
CSSSStrategy.moveToDestination(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
CSDBStrategy.moveToDestination(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
CSCSStrategy.moveToDestination(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
CDBStrategy.moveToDestination(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
CCStrategy.moveToDestination(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
CCSStrategy.moveToDestination(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
SSSSStrategy.moveToSource(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
SSDBStrategy.moveToSource(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
SSCSStrategy.moveToSource(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
MoveStrategy.moveToSource(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
moves the item with the given name from destination to source |
boolean |
DBSSStrategy.moveToSource(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
DBCStrategy.moveToSource(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
DBCSStrategy.moveToSource(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
CSSStrategy.moveToSource(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
CSSSStrategy.moveToSource(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
CSDBStrategy.moveToSource(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
CSCSStrategy.moveToSource(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
CDBStrategy.moveToSource(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
CCStrategy.moveToSource(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
boolean |
CCSStrategy.moveToSource(java.lang.Object source,
java.lang.Object destination,
java.lang.String itemName,
DataBasket db,
int count)
|
Uses of DataBasket in org.salespointframework.web.spring.controller |
---|
Methods in org.salespointframework.web.spring.controller that return DataBasket | |
---|---|
DataBasket |
DoubleViewController.getDataBasket()
simple getter for attribute dataBasket |
Methods in org.salespointframework.web.spring.controller with parameters of type DataBasket | |
---|---|
void |
DoubleViewController.initialize(S source,
D destination,
MoveStrategy moveStrategy,
DataBasket dataBasket)
Specify inherited attributes DoubleViewController.source , DoubleViewController.destination , DoubleViewController.moveStrategy and optional DoubleViewController.dataBasket |
void |
DoubleViewController.setDataBasket(DataBasket dataBasket)
simple setter for attribute dataBasket |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |