Uses of Interface
corny.addressbook.data.Record

Packages that use Record
corny.addressbook   
corny.addressbook.data   
 

Uses of Record in corny.addressbook
 

Methods in corny.addressbook that return Record
 Record NativeAddressBook.getRecord(java.lang.String uid)
          Returns the Record with the given UID or null if the the Record doesn't exist.
 

Methods in corny.addressbook with parameters of type Record
 boolean NativeAddressBook.removeRecord(Record r)
          Permamently removes a Record from the Address book.
 

Uses of Record in corny.addressbook.data
 

Classes in corny.addressbook.data that implement Record
 class Contact
          Data model class for Contacts vended from the Mac OS X address book.
 class Group
          Data model class for contact groups vended from the Mac OS X address book.
 

Methods in corny.addressbook.data with parameters of type Record
 boolean Group.addRecord(Record newMember)
          Adds a new Record to this Group.
 void Record.initializeWith(Record o)
          Re-Initialized a Record with the data of another Record.
 void Group.initializeWith(Record o)
           
 void Contact.initializeWith(Record o)
          Used by NativeAddressBook to re-initialize this Contact if it was modified externally.
 boolean Group.removeRecord(Record recordToRemove)
          Removes a Record from this Group.
 

Constructor parameters in corny.addressbook.data with type arguments of type Record
Group(java.util.List<?> rawContent, java.util.Map<java.lang.String,Record> persons)
          Creates a new Group from the raw data provided by the native Code.