Interface como.irc.ComoIRCFrontEnd
All Packages Class Hierarchy This Package Previous Next Index
Interface como.irc.ComoIRCFrontEnd
- public interface ComoIRCFrontEnd
- extends Object
-
addUser(String)
- new user joined the como system
-
getApplet()
- return the Applet of the FrontEnd.
-
handleInvitation(User, IrcChan)
-
Called by server upon receipt of an invitation
-
leftChannel(IrcChan)
- some user left a whole channel (i.e.
-
log(String)
- Info messages from the server
-
noConnection()
- Called by server when the connection is lost
-
userLeft(String)
- some user left como
noConnection
public abstract void noConnection()
- Called by server when the connection is lost
handleInvitation
public abstract void handleInvitation(User u,
IrcChan chan)
- Called by server upon receipt of an invitation
log
public abstract void log(String s)
- Info messages from the server
addUser
public abstract void addUser(String nick)
- new user joined the como system
leftChannel
public abstract void leftChannel(IrcChan chan)
- some user left a whole channel (i.e. he quitted the commlet)
userLeft
public abstract void userLeft(String nick)
- some user left como
getApplet
public abstract Applet getApplet()
- return the Applet of the FrontEnd.
All Packages Class Hierarchy This Package Previous Next Index