Uses of Class
corny.addressbook.searching.Filter.Filter

Packages that use Filter
corny.addressbook   
corny.addressbook.ContactUtils   
corny.addressbook.gui.ContactTable   
corny.addressbook.gui.PeoplePicker   
corny.addressbook.gui.PeoplePicker.PeoplePickerPanel   
corny.addressbook.gui.SearchDialog   
corny.addressbook.searching.Filter   
 

Uses of Filter in corny.addressbook
 

Fields in corny.addressbook declared as Filter
static Filter NativeAddressBook.contactsWithAddressFilter
          Filters Contacts which have Addresses.
static Filter NativeAddressBook.contactsWithBirthdayFilter
          Filters Contacts which have a birthday set.
static Filter NativeAddressBook.contactsWithEmailFilter
          Filters Contacts which have Email addresses.
static Filter NativeAddressBook.contactsWithNameFilter
          Filters Contacts which have a displayed name (full name or organization name).
static Filter NativeAddressBook.contactsWithPhoneFilter
          Filters Contacts which have phone numbers.
static Filter NativeAddressBook.contactsWithPictureFilter
          Filters Contacts which have an attached picture.
static Filter NativeAddressBook.organizationsFilter
          Filters Contacts which are organizations, not persons.
static Filter NativeAddressBook.personsFilter
          Filters Contacts which are persons, not organizations.
 

Methods in corny.addressbook with parameters of type Filter
 java.util.List<Contact> NativeAddressBook.findContacts(Filter search)
          Searches for Contacts in the whole Address Book
 java.util.List<Contact> NativeAddressBook.findContactsInGroup(Filter search, Group g)
          Searches for Contacts in a given Group
 

Uses of Filter in corny.addressbook.ContactUtils
 

Methods in corny.addressbook.ContactUtils with parameters of type Filter
static java.util.List<Contact> ContactUtils.filterContacts(java.util.Collection<Contact> coll, Filter filter)
          Filters the given Collection of Contacts.
 

Uses of Filter in corny.addressbook.gui.ContactTable
 

Methods in corny.addressbook.gui.ContactTable with parameters of type Filter
 void ContactTableHandler.fetchContacts(Group group, Filter filter, boolean preserveSelection)
          Replaces the content of the Table with the Contacts of the given Group.
 

Uses of Filter in corny.addressbook.gui.PeoplePicker
 

Constructors in corny.addressbook.gui.PeoplePicker with parameters of type Filter
PeoplePickerDialog(java.lang.String title, Filter filter, int columns, int listSelectionModel)
          Creates a new modal PeoplePickerDialog without owner Window.
PeoplePickerDialog(java.awt.Window owner, java.lang.String title, Filter filter, int columns, int listSelectionModel)
          Creates a new modal PeoplePickerDialog.
PeoplePickerOverlay(java.lang.String title, Filter filter, int columns, int listSelectionModel)
          Creates a new PeoplePickerOverlay.
 

Uses of Filter in corny.addressbook.gui.PeoplePicker.PeoplePickerPanel
 

Constructors in corny.addressbook.gui.PeoplePicker.PeoplePickerPanel with parameters of type Filter
PeoplePickerPanel(Filter filter, int columns, int listSelectionModel)
          Creates a new PeoplePickerPanel.
 

Uses of Filter in corny.addressbook.gui.SearchDialog
 

Methods in corny.addressbook.gui.SearchDialog that return Filter
 Filter SearchDialogHandler.getFilter()
          The Filter created in the Dialog or null if no Filter was specified
 

Uses of Filter in corny.addressbook.searching.Filter
 

Subclasses of Filter in corny.addressbook.searching.Filter
 class ContactFilter
          Filter class for filtering Contacts.
 class MetaFilter
          Filter class to combine multiple Filters to a more complex one.
 

Methods in corny.addressbook.searching.Filter that return Filter
static Filter Filter.createFilter(java.lang.String expr)
          Creates a Filter instance by using a regular expression.
 

Constructors in corny.addressbook.searching.Filter with parameters of type Filter
MetaFilter(boolean conjunction, Filter[] children)
          Creates a new MetaFilter with the specified conjunction and child Filters.