home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-08-14 | 708 b | 37 lines |
- package como.irc;
-
- import como.sys.*;
- import java.applet.*;
-
- public interface ComoIRCFrontEnd {
-
- /**
- * Called by server when the connection is lost
- */
- public void noConnection() ;
- /**
- * Called by server upon receipt of an invitation
- */
- public void handleInvitation(User u,IrcChan chan) ;
- /**
- * Info messages from the server
- */
- public void log(String s) ;
- /**
- * new user joined the como system
- */
- public void addUser(String nick) ;
- /**
- * some user left a whole channel (i.e. he quitted the commlet)
- */
- public void leftChannel(IrcChan chan) ;
- /**
- * some user left como
- */
- public void userLeft(String nick) ;
- /**
- * return the Applet of the FrontEnd.
- */
- public Applet getApplet();
- }
-