JML

net.sf.jml.event
Class MsnEmailAdapter

java.lang.Object
  extended by net.sf.jml.event.MsnEmailAdapter
All Implemented Interfaces:
MsnEmailListener

public class MsnEmailAdapter
extends Object
implements MsnEmailListener

MsnEmailListener adapter.

Author:
Daniel Henninger

Constructor Summary
MsnEmailAdapter()
           
 
Method Summary
 void activityEmailNotificationReceived(MsnSwitchboard switchboard, MsnEmailActivityMessage message, MsnContact contact)
          Received email activity notification message.
 void initialEmailDataReceived(MsnSwitchboard switchboard, MsnEmailInitEmailData message, MsnContact contact)
          Received initial email data notification message.
 void initialEmailNotificationReceived(MsnSwitchboard switchboard, MsnEmailInitMessage message, MsnContact contact)
          Received initial email notification message.
 void newEmailNotificationReceived(MsnSwitchboard switchboard, MsnEmailNotifyMessage message, MsnContact contact)
          Received new email notification message.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MsnEmailAdapter

public MsnEmailAdapter()
Method Detail

initialEmailNotificationReceived

public void initialEmailNotificationReceived(MsnSwitchboard switchboard,
                                             MsnEmailInitMessage message,
                                             MsnContact contact)
Description copied from interface: MsnEmailListener
Received initial email notification message.

Specified by:
initialEmailNotificationReceived in interface MsnEmailListener
Parameters:
switchboard - MsnSwitchboard
message - initial email notification message
contact - the user who sent this message

initialEmailDataReceived

public void initialEmailDataReceived(MsnSwitchboard switchboard,
                                     MsnEmailInitEmailData message,
                                     MsnContact contact)
Description copied from interface: MsnEmailListener
Received initial email data notification message.

Specified by:
initialEmailDataReceived in interface MsnEmailListener
Parameters:
switchboard - MsnSwitchboard
message - initial email notification message
contact - the user who sent this message

newEmailNotificationReceived

public void newEmailNotificationReceived(MsnSwitchboard switchboard,
                                         MsnEmailNotifyMessage message,
                                         MsnContact contact)
Description copied from interface: MsnEmailListener
Received new email notification message.

Specified by:
newEmailNotificationReceived in interface MsnEmailListener
Parameters:
switchboard - MsnSwitchboard
message - new email notification message
contact - the user who sent this message

activityEmailNotificationReceived

public void activityEmailNotificationReceived(MsnSwitchboard switchboard,
                                              MsnEmailActivityMessage message,
                                              MsnContact contact)
Description copied from interface: MsnEmailListener
Received email activity notification message.

Specified by:
activityEmailNotificationReceived in interface MsnEmailListener
Parameters:
switchboard - MsnSwitchboard
message - email activity notification message
contact - the user who sent this message

JML