public interface ContactListListener
ContactListListener
interface is used to listen for model changes within the Contact List.
In general, you implement this interface in order to listen
for adding and removal of both ContactItems and ContactGroups.Modifier and Type | Method and Description |
---|---|
void |
contactGroupAdded(ContactGroup group)
Called when a
ContactGroup has been added to the ContactList. |
void |
contactGroupRemoved(ContactGroup group)
Called when a
ContactGroup has been removed from the ContactList. |
void |
contactItemAdded(ContactItem item)
Notified when a
ContactItem has been added to the ContactList. |
void |
contactItemClicked(ContactItem item)
Called when a
ContactItem has been clicked in the Contact List. |
void |
contactItemDoubleClicked(ContactItem item)
Called when a
ContactItem has been double clicked in the Contact List. |
void |
contactItemRemoved(ContactItem item)
Notified when a
ContactItem has been removed from the ContactList. |
void contactItemAdded(ContactItem item)
ContactItem
has been added to the ContactList.item
- the ContactItem added.void contactItemRemoved(ContactItem item)
ContactItem
has been removed from the ContactList.item
- the ContactItem removed.void contactGroupAdded(ContactGroup group)
ContactGroup
has been added to the ContactList.group
- the ContactGroup.void contactGroupRemoved(ContactGroup group)
ContactGroup
has been removed from the ContactList.group
- the ContactGroup.void contactItemClicked(ContactItem item)
ContactItem
has been clicked in the Contact List.item
- the ContactItem
double clicked.void contactItemDoubleClicked(ContactItem item)
ContactItem
has been double clicked in the Contact List.item
- the ContactItem
double clicked.