Uses of Class
org.fm.addressbook.businessobject.Category

Packages that use Category
org.fm.addressbook.bean   
org.fm.addressbook.businessobject   
org.fm.addressbook.dao   
org.fm.addressbook.dao.hibernate   
org.fm.addressbook.delegate   
org.fm.addressbook.service   
org.fm.addressbook.service.impl   
 

Uses of Category in org.fm.addressbook.bean
 

Methods in org.fm.addressbook.bean that return Category
 Category ContactBean.getCurrentCategory()
           
 Category CategoryBean.getCurrentCategory()
           
 Category CategoryBean.getDefaultCategory()
           
 

Methods in org.fm.addressbook.bean that return types with arguments of type Category
 java.util.List<Category> CategoryBean.getCategoryList()
           
 

Methods in org.fm.addressbook.bean with parameters of type Category
 void ContactBean.setCurrentCategory(Category currentCategory)
           
 void CategoryBean.setCurrentCategory(Category currentCategory)
           
 void CategoryBean.setDefaultCategory(Category defaultCategory)
           
 

Method parameters in org.fm.addressbook.bean with type arguments of type Category
 void CategoryBean.setCategoryList(java.util.List<Category> categoryList)
           
 

Uses of Category in org.fm.addressbook.businessobject
 

Fields in org.fm.addressbook.businessobject with type parameters of type Category
 java.util.List<Category> Contact.categories
           
 java.util.List<Category> Contact.unselectedCategories
           
 

Methods in org.fm.addressbook.businessobject that return types with arguments of type Category
 java.util.List<Category> Contact.getCategories()
           
 java.util.List<Category> Contact.getUnselectedCategories()
           
 

Method parameters in org.fm.addressbook.businessobject with type arguments of type Category
 void Contact.populateUnselectedCategories(java.util.List<Category> categoryList)
           
 void Contact.setCategories(java.util.List<Category> categories)
           
 void Contact.setUnselectedCategories(java.util.List<Category> unselectedCategories)
           
 

Uses of Category in org.fm.addressbook.dao
 

Methods in org.fm.addressbook.dao that return Category
 Category CategoryDAO.getCategory(long id)
           
 

Methods in org.fm.addressbook.dao that return types with arguments of type Category
 java.util.List<Category> CategoryDAO.getAllCategories()
           
 

Methods in org.fm.addressbook.dao with parameters of type Category
 void CategoryDAO.deleteCategory(Category category)
           
 java.util.List<Contact> CategoryDAO.getAllContacts(AddressBook addressBook, Category category)
           
 java.util.List<Contact> CategoryDAO.getAllContacts(Category category)
           
 void CategoryDAO.saveCategory(Category category)
           
 void CategoryDAO.updateCategory(Category category)
           
 

Uses of Category in org.fm.addressbook.dao.hibernate
 

Methods in org.fm.addressbook.dao.hibernate that return Category
 Category HibernateCategoryDAO.getCategory(long id)
           
 

Methods in org.fm.addressbook.dao.hibernate that return types with arguments of type Category
 java.util.List<Category> HibernateCategoryDAO.getAllCategories()
           
 

Methods in org.fm.addressbook.dao.hibernate with parameters of type Category
 void HibernateCategoryDAO.deleteCategory(Category category)
           
 java.util.List<Contact> HibernateCategoryDAO.getAllContacts(AddressBook addressBook, Category category)
           
 java.util.List<Contact> HibernateCategoryDAO.getAllContacts(Category category)
           
 void HibernateCategoryDAO.saveCategory(Category category)
           
 void HibernateCategoryDAO.updateCategory(Category category)
           
 

Uses of Category in org.fm.addressbook.delegate
 

Methods in org.fm.addressbook.delegate that return types with arguments of type Category
 java.util.List<Category> CategoryDelegate.getAllCategories()
           
 

Methods in org.fm.addressbook.delegate with parameters of type Category
 void CategoryDelegate.deleteCategory(Category category)
           
 java.util.List<Contact> CategoryDelegate.getAllContacts(AddressBook addressbook, Category category)
           
 void CategoryDelegate.saveCategory(Category category)
           
 void CategoryDelegate.updateCategory(Category category)
           
 

Uses of Category in org.fm.addressbook.service
 

Methods in org.fm.addressbook.service that return Category
 Category CatagoryService.getCategory(long id)
           
 

Methods in org.fm.addressbook.service that return types with arguments of type Category
 java.util.List<Category> CatagoryService.getAllCategories()
           
 

Methods in org.fm.addressbook.service with parameters of type Category
 void CatagoryService.deleteCategory(Category category)
           
 java.util.List<Contact> CatagoryService.getAllContacts(AddressBook addressBook, Category category)
           
 void CatagoryService.saveCategory(Category category)
           
 void CatagoryService.updateCategory(Category category)
           
 

Uses of Category in org.fm.addressbook.service.impl
 

Methods in org.fm.addressbook.service.impl that return Category
 Category CategoryServiceImpl.getCategory(long id)
           
 

Methods in org.fm.addressbook.service.impl that return types with arguments of type Category
 java.util.List<Category> CategoryServiceImpl.getAllCategories()
           
 

Methods in org.fm.addressbook.service.impl with parameters of type Category
 void CategoryServiceImpl.deleteCategory(Category category)
           
 java.util.List<Contact> CategoryServiceImpl.getAllContacts(AddressBook addressBook, Category category)
           
 void CategoryServiceImpl.saveCategory(Category category)
           
 void CategoryServiceImpl.updateCategory(Category category)