Uses of Class
org.salespointframework.core.data.Category

Packages that use Category
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.desktop.renderer   
 

Uses of Category in org.salespointframework.core.data
 

Fields in org.salespointframework.core.data declared as Category
protected  Category CurrencyItemImpl.category
          Currency category
 

Methods in org.salespointframework.core.data that return Category
 Category CurrencyItemImpl.getCategory()
          retrieve items category
 Category AbstractCurrency.CurrencyItemData.getCategory()
          Returns the category of the item
 

Methods in org.salespointframework.core.data with parameters of type Category
 void CurrencyItemImpl.setCategory(Category category)
          set items category
 

Constructors in org.salespointframework.core.data with parameters of type Category
AbstractCurrency.CurrencyItemData(java.lang.String name, int value, java.net.URI imagefile, Category category)
          Constructor
CurrencyItemImpl(java.lang.String sName, int nValue, java.net.URI imagefile, Category category)
          Create a new CurrencyItemImpl
 

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

Methods in org.salespointframework.core.data.interfaces that return Category
 Category Categorizable.getCategory()
          return item category
 

Uses of Category in org.salespointframework.desktop
 

Constructors in org.salespointframework.desktop with parameters of type Category
JCatalogListView(Catalog c, DataBasket db, java.util.Comparator<CatalogItem> cmp, JListView.ListViewOrientation orientation, javax.swing.ListCellRenderer renderer, boolean categorize, Category defaultCategory)
          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
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
JStoringStockListView(Stock stock, DataBasket db, java.util.Comparator<StockItem> cmp, JListView.ListViewOrientation orientation, javax.swing.ListCellRenderer renderer, boolean categorize, Category defaultCategory)
          default constructor
JUserListView(UserManager um, java.util.Comparator<User> cmp, UserFilter filter, JListView.ListViewOrientation orientation, javax.swing.ListCellRenderer renderer, boolean categorize, Category defaulCategory)
          constructor
 

Uses of Category in org.salespointframework.desktop.formsheets
 

Fields in org.salespointframework.desktop.formsheets declared as Category
protected  Category DataExchangeFormSheet.ListViewDataExchangeOption.defaultCategory
          Category to use for Categorie with null Category
 

Methods in org.salespointframework.desktop.formsheets that return Category
 Category DataExchangeFormSheet.ListViewDataExchangeOption.getDefaultCategory()
           
 

Methods in org.salespointframework.desktop.formsheets with parameters of type Category
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, 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, 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, boolean categorize, Category defaultCategory)
          creates a new instance of ListViewFormSheet from a StoringStock source
static ListViewFormSheet ListViewFormSheet.create(java.lang.String caption, UIGate uiGate, UserManager um, UserFilter filter, java.util.Comparator<User> cmp, JListView.ListViewOrientation orientation, javax.swing.ListCellRenderer renderer, boolean categorize, Category defaulCategory)
          Creates a new instance of ListViewFormSheet from a UserManager source
 void DataExchangeFormSheet.ListViewDataExchangeOption.setDefaultCategory(Category defaultCategory)
           
 

Constructors in org.salespointframework.desktop.formsheets with parameters of type Category
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
 

Uses of Category in org.salespointframework.desktop.models
 

Fields in org.salespointframework.desktop.models declared as Category
protected  Category UserListModel.defaultCategory
           
protected  Category StoringStockListModel.defaultCategory
          category used for items without category
protected  Category DataBasketListModel.defaultCategory
          category used for items without category
protected  Category CountingStockListModel.defaultCategory
          category used for items without category
protected  Category CatalogListModel.defaultCategory
          category used for items without category
 

Constructors in org.salespointframework.desktop.models with parameters of type Category
CatalogListModel(Catalog c, DataBasket db, java.util.Comparator<CatalogItem> cmp, boolean categorize, Category defaultCategory)
          constructor
CountingStockListModel(CountingStock<StockItem,CatalogItem> stock, DataBasket db, java.util.Comparator<CatalogItem> cmp, boolean showZeros, boolean categorize, Category defaultCategory)
          constructor
DataBasketListModel(DataBasket db, DataBasketCondition dbc, java.util.Comparator<DataBasketEntry> cmp, boolean categorize, Category defaultCategory, DataBasketEntryGrouper dbeg)
          constructor
StoringStockListModel(Stock stock, DataBasket db, java.util.Comparator<StockItem> cmp, boolean categorize, Category defaultCategory)
          constructor
UserListModel(UserManager um, UserFilter uf, java.util.Comparator<User> cmp, boolean categorize, Category defaultCategory)
          Create a new UserListModel modeling a given UserManager.
 

Uses of Category in org.salespointframework.desktop.renderer
 

Fields in org.salespointframework.desktop.renderer declared as Category
 Category AbstractListViewRenderer.CategoryItem.category
          inner category
 

Constructors in org.salespointframework.desktop.renderer with parameters of type Category
AbstractListViewRenderer.CategoryItem(Category category)
          default constructor