Uses of Class
corny.addressbook.data.ContactProperty

Packages that use ContactProperty
corny.addressbook.ContactUtils   
corny.addressbook.data   
corny.addressbook.gui.ContactDisplay.LabelCombo   
corny.addressbook.gui.ContactTable   
corny.addressbook.gui.PropertyEditor   
corny.addressbook.gui.SearchDialog.SearchAndReplaceDialog   
corny.addressbook.searching.Filter   
corny.addressbook.searching.ValueModifier   
 

Uses of ContactProperty in corny.addressbook.ContactUtils
 

Methods in corny.addressbook.ContactUtils with parameters of type ContactProperty
static int ContactUtils.searchAndReplace(java.util.Collection<Contact> contacts, ContactProperty property, java.lang.String propertyLabel, ValueModifier modifier)
          Searches through the Address Book and modifies the specified property.
static int ContactUtils.searchAndReplace(java.util.Collection<Contact> contacts, ContactProperty property, java.lang.String propertyLabel, ValueModifier modifier, java.awt.Window parent)
          Searches through the Address Book and modifies the specified property.
 

Uses of ContactProperty in corny.addressbook.data
 

Methods in corny.addressbook.data that return ContactProperty
static ContactProperty ContactProperty.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ContactProperty[] ContactProperty.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in corny.addressbook.data with parameters of type ContactProperty
 boolean MultiValue.MultiValueLabel.appliesToProperty(ContactProperty property)
          Returns true if this is a proper label for the given ContactProperty.
 java.lang.Object Contact.getValueForProperty(ContactProperty prop)
          Returns the value for the given ContactProperty of this Contact.
 java.lang.Object Contact.getValueForProperty(ContactProperty prop, java.lang.String label)
          Returns the value for the given ContactProperty of this Contact.
 

Method parameters in corny.addressbook.data with type arguments of type ContactProperty
 void ContactProperty.addRegularExpressionsTo(java.util.Map<java.lang.String,ContactProperty> propertyMap)
          Used by the FilterCreator process to read the regular expressions which represent this property.
 

Uses of ContactProperty in corny.addressbook.gui.ContactDisplay.LabelCombo
 

Constructors in corny.addressbook.gui.ContactDisplay.LabelCombo with parameters of type ContactProperty
LabelCombo(ContactProperty prop, java.lang.String key)
          Creates a new LabelCombo for the selected ContactProperty.
 

Uses of ContactProperty in corny.addressbook.gui.ContactTable
 

Methods in corny.addressbook.gui.ContactTable with parameters of type ContactProperty
 boolean ContactTableHandler.addColumn(ContactProperty prop, java.lang.String label)
          Adds a new column with the given content.
 boolean ContactTableHandler.removeColumn(ContactProperty prop, java.lang.String label)
          Removes the column with the given content.
 

Uses of ContactProperty in corny.addressbook.gui.PropertyEditor
 

Methods in corny.addressbook.gui.PropertyEditor with parameters of type ContactProperty
static PropertyEditor PropertyEditor.createEditorFor(ContactProperty prop, java.lang.Object value)
          Creates and returns an editor for the given property value.
 

Uses of ContactProperty in corny.addressbook.gui.SearchDialog.SearchAndReplaceDialog
 

Methods in corny.addressbook.gui.SearchDialog.SearchAndReplaceDialog that return ContactProperty
 ContactProperty SearchAndReplaceDialogHandler.getReplaceProperty()
          The selected property to modify
 

Uses of ContactProperty in corny.addressbook.searching.Filter
 

Constructors in corny.addressbook.searching.Filter with parameters of type ContactProperty
ContactFilter(ContactProperty property, int comparison, java.lang.Object value)
          Creates new ContactFilter which compares the selected property by the selected comparison to the given value.
ContactFilter(ContactProperty property, java.lang.String propertyLabel, int comparison, java.lang.Object value)
          Creates new ContactFilter which compares the selected property by the selected comparison to the given value.
 

Uses of ContactProperty in corny.addressbook.searching.ValueModifier
 

Methods in corny.addressbook.searching.ValueModifier with parameters of type ContactProperty
 boolean ValueModifier.appliesToProperty(ContactProperty prop, java.lang.Class<?> cl)
          Specifies whether or not this ValueModifier can be applied on a given ContactProperty.
 java.lang.String ValueModifier.getDescriptionForParameter(int index, java.lang.Class<?> cl, ContactProperty replaceProperty)
          Returns the description text for the parameter at a specified index
 javax.swing.JComponent ValueModifierImpl.getEditorForParameter(int index, java.lang.Class<?> cl, ContactProperty prop, java.awt.event.KeyListener l)
           
 javax.swing.JComponent ValueModifier.getEditorForParameter(int index, java.lang.Class<?> cl, ContactProperty replaceProperty, java.awt.event.KeyListener l)
          Returns the editing component for the given parameter index.