Uses of Class
org.eclipse.ecf.protocol.msn.Contact

Packages that use Contact
org.eclipse.ecf.protocol.msn Provides support for connecting to the MSN servers used by Windows Live Messenger. 
org.eclipse.ecf.protocol.msn.events Provides listener interfaces for handling events received from the MSN network. 
 

Uses of Contact in org.eclipse.ecf.protocol.msn
 

Methods in org.eclipse.ecf.protocol.msn that return Contact
 Contact ContactList.getContact(java.lang.String email)
          Returns the contact that uses the specified email address.
 Contact[] ChatSession.getParticipants()
           Note: This method will likely be modified in the future (renamed, change in return type, Contact[] <-> java.util.List, inclusion/exclusion of the current user, complete removal, etc.).
 

Methods in org.eclipse.ecf.protocol.msn with parameters of type Contact
 boolean Group.contains(Contact contact)
          Returns whether the specified contact is in this group.
 void ContactList.removeContact(Contact contact)
          Removes the specified contact from the user's list.
 

Uses of Contact in org.eclipse.ecf.protocol.msn.events
 

Methods in org.eclipse.ecf.protocol.msn.events with parameters of type Contact
 void IContactListListener.contactAdded(Contact contact)
          This method is invoked when a contact has been added to the user's list.
 void IChatSessionListener.contactIsTyping(Contact contact)
          This method is called when a contact begins typing.
 void IChatSessionListener.contactJoined(Contact contact)
          This method is called when a contact joins the session.
 void IChatSessionListener.contactLeft(Contact contact)
          This method is called when a contact leaves the session.
 void IContactListListener.contactRemoved(Contact contact)
          This method is invoked when a contact has been removed from the user's list.
 void IChatSessionListener.messageReceived(Contact contact, java.lang.String message)
          This method is called when a message has been received from a contact.