org.relayirc.chatengine
Class ChatEngineAdapter

java.lang.Object
  |
  +--org.relayirc.chatengine.ChatEngineAdapter

public class ChatEngineAdapter
extends java.lang.Object
implements ChatEngineListener

Provides a default do-nothing implementation of ChatEngineListener


Constructor Summary
ChatEngineAdapter()
           
 
Method Summary
 void onChannelJoin(ChatEngineEvent event)
          User has joined a channel.
 void onChannelPart(ChatEngineEvent event)
          User has parted from a channel.
 void onConnection(ChatEngineEvent event)
          Engine has connected to IRC server.
 void onDisconnection(ChatEngineEvent event)
          Engine has disconnected from IRC server.
 void onStatus(ChatEngineEvent event)
          Status message from engine.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ChatEngineAdapter

public ChatEngineAdapter()
Method Detail

onConnection

public void onConnection(ChatEngineEvent event)
Description copied from interface: ChatEngineListener
Engine has connected to IRC server.
Specified by:
onConnection in interface ChatEngineListener

onDisconnection

public void onDisconnection(ChatEngineEvent event)
Description copied from interface: ChatEngineListener
Engine has disconnected from IRC server.
Specified by:
onDisconnection in interface ChatEngineListener

onChannelJoin

public void onChannelJoin(ChatEngineEvent event)
Description copied from interface: ChatEngineListener
User has joined a channel. Event's value will be name of channel.
Specified by:
onChannelJoin in interface ChatEngineListener

onChannelPart

public void onChannelPart(ChatEngineEvent event)
Description copied from interface: ChatEngineListener
User has parted from a channel.
Specified by:
onChannelPart in interface ChatEngineListener

onStatus

public void onStatus(ChatEngineEvent event)
Description copied from interface: ChatEngineListener
Status message from engine.
Specified by:
onStatus in interface ChatEngineListener