com.zerjio.JIRC
Interface NICKListener


public interface NICKListener

The basic interface for a NICKMessage listener.


Method Summary
 void NICKReceived(NICKMessage msg)
          This method should take care about an NICKMessage that has been recieved.
 

Method Detail

NICKReceived

public void NICKReceived(NICKMessage msg)
This method should take care about an NICKMessage that has been recieved.

It should mark the message as used using IRCMessage.markAsUsed() in case that the information on the message has been used in any form. It is also responsible of using IRCMessage.mustBeDiscarded() if no other listener should get noticed about this message.

Parameters:
msg - The NICKMessage that has been received.
See Also:
markAsUsed, mustBeDiscarded