Uses of Interface
org.salespointframework.core.data.events.StockChangeListener

Packages that use StockChangeListener
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.models   
 

Uses of StockChangeListener in org.salespointframework.core.data
 

Fields in org.salespointframework.core.data declared as StockChangeListener
protected  StockChangeListener StockImpl.m_sclEditCreatorListener
          Listens to the creator, if this is a shallow copy that was created for editing purposes.
 

Methods in org.salespointframework.core.data with parameters of type StockChangeListener
 void StockImpl.addStockChangeListener(StockChangeListener scl)
          Add a listener to receive events when the Stock's contents change.
 void StockImpl.removeStockChangeListener(StockChangeListener scl)
          Remove a listener that received events when the Stock's contents changed.
 

Uses of StockChangeListener in org.salespointframework.core.data.events
 

Classes in org.salespointframework.core.data.events that implement StockChangeListener
 class StockChangeAdapter<T extends StockItem,CT extends CatalogItem>
          An abstract adapter class for receiving stock change events.
 

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

Classes in org.salespointframework.core.data.filters that implement StockChangeListener
 class AbstractStockFilter<T extends StockItem,CT extends CatalogItem>
          Abstract superclass of all Stock filters.
 class CountingStockFilter<T extends StockItem,CT extends CatalogItem>
          StockFilter for CountingStocks.
 class MoneyBagFilter
          CountingStockFilter that filters MoneyBags.
 class StoringStockFilter<T extends StockItem,CT extends CatalogItem>
          StockFilter for StoringStocks.
 

Methods in org.salespointframework.core.data.filters with parameters of type StockChangeListener
 void AbstractStockFilter.addStockChangeListener(StockChangeListener scl)
          Register a listener that will receive events when the Stock's contents change.
 void AbstractStockFilter.removeStockChangeListener(StockChangeListener scl)
          Un-Register a listener that received events when the Stock's contents changed.
 

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

Methods in org.salespointframework.core.data.interfaces with parameters of type StockChangeListener
 void ListenableStock.addStockChangeListener(StockChangeListener scl)
          Add a listener that will be informed about changes to the Stock's contents.
 void ListenableStock.removeStockChangeListener(StockChangeListener scl)
          Remove a listener that was being informed about changes to the Stock's contents.
 

Uses of StockChangeListener in org.salespointframework.desktop.models
 

Classes in org.salespointframework.desktop.models that implement StockChangeListener
 class CountingStockListModel
          ListModel for CountingStocks
 class CountingStockTableModel
          A TableModel that models the contents of a CountingStock.
 class StoringStockListModel
          ListModel for StoringStocks
 class StoringStockTableModel
          A TableModel that models the contents of a Stock, representing each StockItem as an individual record.