de.kosi.chat
Interface ChatListener

All Superinterfaces:
java.util.EventListener, java.rmi.Remote
All Known Implementing Classes:
ProxyChatListener, ChatComponent

public interface ChatListener
extends java.rmi.Remote, java.util.EventListener

This interface declares all methods that a ChatListener must implement. A ChatListener is registered at a ChatChannel to receive all events that occur in the chat.

ChangeLog:

 $Log: ChatListener.java,v $
 Revision 1.1.1.1  2001/04/29 18:05:16  jiriki
 Imported sources from zola.

 Revision 1.3  2001/02/25 23:16:05  wombat
 - deadlock vermeidung umgestellt.
 - ListenerList erstellt

 Revision 1.2  2001/02/09 21:09:05  login
 - updated documentation !!


 

Version:
$Revision: 1.1.1.1 $ ($Date: 2001/04/29 18:05:16 $)
Author:
Timo, Niklas, Ole

Method Summary
 void handleEvent(ChatEvent event)
          This method is called to notify the listener that an event occured on the chat channel where this listener is registered.
 

Method Detail

handleEvent

public void handleEvent(ChatEvent event)
                 throws java.rmi.RemoteException
This method is called to notify the listener that an event occured on the chat channel where this listener is registered.
Parameters:
event - The event that occured on the channel.
Throws:
java.rmi.RemoteException - If RMI runs into trouble.