|
SalesPoint Framework v3.0 | |||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use VetoException | |
data | Provides interfaces for data management. |
data.events | Provides classes and interfaces for events triggered by classes in the data package and its sub-packages. |
data.filters | Contains catalog and stock filters. |
data.ooimpl | Pure Java implementations of the interfaces in package data . |
data.swing | Swing components that can be used to display and edit the contents of data management classes. |
Uses of VetoException in data |
Methods in data that throw VetoException | |
void |
CountingStock.remove(String sKey,
int nCount,
DataBasket db)
Remove a number of items of a given key from the Stock. |
CatalogItem |
Catalog.remove(CatalogItem ci,
DataBasket db)
Remove a CatalogItem from the Catalog. |
CatalogItem |
Catalog.remove(String sKey,
DataBasket db)
Remove a CatalogItem from the Catalog. |
CatalogItem |
Catalog.get(String sKey,
DataBasket db,
boolean fForEdit)
Get a CatalogItem by its key. |
StockItem |
Stock.remove(String sKey,
DataBasket db)
Remove one StockItem with the specified key from the Stock. |
StockItem |
Stock.remove(StockItem si,
DataBasket db)
Remove the given StockItem from the Stock. |
Uses of VetoException in data.events |
Methods in data.events that throw VetoException | |
void |
StockChangeListener.canRemoveStockItems(StockChangeEvent e)
Called to ask whether certain StockItems may be removed. |
void |
StockChangeListener.canEditStockItems(StockChangeEvent e)
Called to ask whether certain StockItems may be edited. |
void |
StockChangeAdapter.canRemoveStockItems(StockChangeEvent e)
Called to ask whether certain StockItems may be removed. |
void |
StockChangeAdapter.canEditStockItems(StockChangeEvent e)
Called to ask whether certain StockItems may be edited. |
void |
CatalogChangeAdapter.canRemoveCatalogItem(CatalogChangeEvent e)
Called to ask whether a CatalogItem may be removed. |
void |
CatalogChangeAdapter.canEditCatalogItem(CatalogChangeEvent e)
Called to ask whether a CatalogItem may be edited. |
void |
CatalogChangeListener.canRemoveCatalogItem(CatalogChangeEvent e)
Called to ask whether a CatalogItem may be removed. |
void |
CatalogChangeListener.canEditCatalogItem(CatalogChangeEvent e)
Called to ask whether a CatalogItem may be edited. |
Uses of VetoException in data.filters |
Methods in data.filters that throw VetoException | |
CatalogItem |
CatalogFilter.remove(CatalogItem ci,
DataBasket db)
Remove the given item from the source Catalog if it is contained in the filtered Catalog. |
CatalogItem |
CatalogFilter.remove(String sKey,
DataBasket db)
Remove the given item from the source Catalog if it is contained in the filtered Catalog. |
CatalogItem |
CatalogFilter.get(String sKey,
DataBasket db,
boolean fForEdit)
Get the indicated item from the source Catalog if it is contained in the filtered Catalog. |
void |
CatalogFilter.canRemoveCatalogItem(CatalogChangeEvent e)
Translate and propagate the event to all listeners of this Catalog. |
void |
CatalogFilter.canEditCatalogItem(CatalogChangeEvent e)
Translate and propagate the event to all listeners of this Catalog. |
protected void |
CatalogFilter.fireCanRemoveCatalogItem(CatalogItem ci,
DataBasket db)
Fire the event to all listeners of this Catalog. |
protected void |
CatalogFilter.fireCanEditCatalogItem(CatalogItem ci,
DataBasket db)
Fire the event to all listeners of this Catalog. |
StockItem |
AbstractStockFilter.remove(String sKey,
DataBasket db)
Remove the given item from the source Stock. |
StockItem |
AbstractStockFilter.remove(StockItem si,
DataBasket db)
Remove the given item from the source Stock. |
void |
AbstractStockFilter.canRemoveStockItems(StockChangeEvent e)
Receive the event from the source Stock, translate and propagate it to any listeners. |
void |
AbstractStockFilter.canEditStockItems(StockChangeEvent e)
Receive the event from the source Stock, translate and propagate it to any listeners. |
protected void |
AbstractStockFilter.fireCanRemoveStockItems(StockChangeEvent e)
Fire an event to any listeners. |
protected void |
AbstractStockFilter.fireCanEditStockItems(StockChangeEvent e)
Fire an event to any listeners. |
void |
CountingStockFilter.remove(String sKey,
int nCount,
DataBasket db)
Remove at most the specified number of items from the source Stock. |
Uses of VetoException in data.ooimpl |
Methods in data.ooimpl that throw VetoException | |
CatalogItem |
CatalogImpl.remove(CatalogItem ci,
DataBasket db)
Remove the given item from the Catalog. |
CatalogItem |
CatalogImpl.remove(String sKey,
DataBasket db)
Remove the indicated item from the Catalog. |
CatalogItem |
CatalogImpl.get(String sKey,
DataBasket db,
boolean fForEdit)
Get the indicated item from the Catalog. |
protected void |
CatalogImpl.fireCanRemoveCatalogItem(CatalogItem ci,
DataBasket db)
Fire an event to all listeners listening to this Catalog. |
protected void |
CatalogImpl.fireCanEditCatalogItem(CatalogItem ci,
DataBasket db)
Fire an event to all listeners listening to this Catalog. |
protected void |
StockImpl.fireCanRemoveStockItems(StockChangeEvent e)
Fire an event to all listeners that showed an interest in this Stock. |
protected void |
StockImpl.fireCanEditStockItems(StockChangeEvent e)
Fire an event to all listeners that showed an interest in this Stock. |
StockItem |
CountingStockImpl.remove(String sKey,
DataBasket db)
Remove one StockItem with the specified key from the Stock. |
StockItem |
CountingStockImpl.remove(StockItem si,
DataBasket db)
Remove the given StockItem from the Stock. |
void |
CountingStockImpl.remove(String sKey,
int nCount,
DataBasket db)
Remove a number of items of a given key from the Stock. |
StockItem |
StoringStockImpl.remove(String sKey,
DataBasket db)
Remove one StockItem with the specified key from the Stock. |
StockItem |
StoringStockImpl.remove(StockItem si,
DataBasket db)
Remove the given StockItem from the Stock. |
Uses of VetoException in data.swing |
Methods in data.swing that throw VetoException | |
void |
CountingStockTableModel.canRemoveStockItems(StockChangeEvent e)
Update the internal model and inform any listeners according to the received event. |
void |
CountingStockTableModel.canEditStockItems(StockChangeEvent e)
Update the internal model and inform any listeners according to the received event. |
void |
CountingStockTableModel.canRemoveCatalogItem(CatalogChangeEvent e)
Update the internal model and inform any listeners according to the received event. |
void |
CountingStockTableModel.canEditCatalogItem(CatalogChangeEvent e)
Update the internal model and inform any listeners according to the received event. |
void |
CatalogTableModel.canRemoveCatalogItem(CatalogChangeEvent e)
Update the internal model and inform any listeners according to the received event. |
void |
CatalogTableModel.canEditCatalogItem(CatalogChangeEvent e)
Update the internal model and inform any listeners according to the received event. |
void |
StoringStockTableModel.canRemoveStockItems(StockChangeEvent e)
Update the internal model and inform any listeners according to the received event. |
void |
StoringStockTableModel.canEditStockItems(StockChangeEvent e)
Update the internal model and inform any listeners according to the received event. |
|
SalesPoint Framework v3.0 | |||||||||||
PREV NEXT | FRAMES NO FRAMES |