org.eclipse.ecf.protocol.msn.events
Interface IContactListListener


public interface IContactListListener

The IContactListListener monitors events pertaining to the addition and removal of contacts on the user's client.

Note: This class/interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is being made available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.


Method Summary
 void contactAdded(Contact contact)
          This method is invoked when a contact has been added to the user's list.
 void contactAddedUser(java.lang.String email)
          This method is invoked when a contact has added the user to his or her contact list.
 void contactRemoved(Contact contact)
          This method is invoked when a contact has been removed from the user's list.
 void contactRemovedUser(java.lang.String email)
          This method is invoked when a contact has removed the user from his or her contact list.
 void groupAdded(Group group)
          This method is invoked when a group has been added to the contact list.
 

Method Detail

contactAdded

void contactAdded(Contact contact)
This method is invoked when a contact has been added to the user's list.

Parameters:
contact - the contact that has been added

contactRemoved

void contactRemoved(Contact contact)
This method is invoked when a contact has been removed from the user's list.

Parameters:
contact - the contact that has been added

contactAddedUser

void contactAddedUser(java.lang.String email)
This method is invoked when a contact has added the user to his or her contact list.

Parameters:
email - the email of the contact

contactRemovedUser

void contactRemovedUser(java.lang.String email)
This method is invoked when a contact has removed the user from his or her contact list.

Parameters:
email - the email of the contact

groupAdded

void groupAdded(Group group)
This method is invoked when a group has been added to the contact list.

Parameters:
group - the group that has been added