JML

net.sf.jml.event
Interface MsnSwitchboardListener

All Known Implementing Classes:
DisplayPictureRetrieveWorker, MsnAdapter, MsnSwitchboardAdapter

public interface MsnSwitchboardListener

Msn switchboard listener, used for chat.

Author:
Roger Chen

Method Summary
 void contactJoinSwitchboard(MsnSwitchboard switchboard, MsnContact contact)
          A contact join switchboard.
 void contactLeaveSwitchboard(MsnSwitchboard switchboard, MsnContact contact)
          A contact leave switchboard.
 void switchboardClosed(MsnSwitchboard switchboard)
          Switchboard closed.
 void switchboardStarted(MsnSwitchboard switchboard)
          Switchboard started.
 

Method Detail

switchboardStarted

void switchboardStarted(MsnSwitchboard switchboard)
Switchboard started. Maybe start by user or join a switchboard.

Parameters:
switchboard - MsnSwitchboard

switchboardClosed

void switchboardClosed(MsnSwitchboard switchboard)
Switchboard closed.

Parameters:
switchboard - MsnSwitchboard

contactJoinSwitchboard

void contactJoinSwitchboard(MsnSwitchboard switchboard,
                            MsnContact contact)
A contact join switchboard.

Parameters:
switchboard - the MsnSwitchboard which contact joins.
contact - the join contact

contactLeaveSwitchboard

void contactLeaveSwitchboard(MsnSwitchboard switchboard,
                             MsnContact contact)
A contact leave switchboard.

Parameters:
switchboard - the MsnSwitchboard which friend leave.
contact - the leave contact

JML