Uses of Class
corny.addressbook.data.MultiValue

Packages that use MultiValue
corny.addressbook.data   
 

Uses of MultiValue in corny.addressbook.data
 

Subclasses of MultiValue in corny.addressbook.data
 class MutableMultiValue<T>
          Data model class for multi value properties of Address Book contacts, like a list of phone numbers.
 

Methods in corny.addressbook.data that return MultiValue
 MultiValue<Address> Contact.getAddress()
           
 MultiValue<java.lang.String> Contact.getChat()
           
 MultiValue<java.lang.String> Contact.getEmail()
           
 MultiValue<java.lang.String> Contact.getPhone()
           
 

Methods in corny.addressbook.data with parameters of type MultiValue
 boolean Contact.setAddresses(MultiValue<Address> addresses)
          Replaces the current addresses with the content of the given MultiValue instance.
 boolean Contact.setChats(MultiValue<java.lang.String> chats)
          Replaces the current chats with the content of the given MultiValue instance.
 boolean Contact.setEmails(MultiValue<java.lang.String> emails)
          Replaces the current Emails with the content of the given MultiValue instance.
 boolean Contact.setPhones(MultiValue<java.lang.String> phones)
          Replaces the current phone numbers with the content of the given MultiValue instance.