Package com.zerjio.JIRC

Interface Summary
JOINListener The basic interface for a JOINMessage listener.
MsgListener The basic interface for a general IRC message listener.
NICKListener The basic interface for a NICKMessage listener.
PARTListener The basic interface for a PARTMessage listener.
PINGListener The basic interface for a PINGMessage listener.
PRIVMSGListener The basic interface for a PRIVMSGMessage listener.
QUITListener The basic interface for a QUITMessage listener.
ReplyMsgListener The basic interface for a ReplyMessage listener.
TOPICListener The basic interface for a TOPICMessage listener.
 

Class Summary
IRCClient This class allows a higher level of interaction within the IRC client and the IRC server.
IRCConnection A class that allows the basic communication between an IRC Client and an IRC Server.
IRCMessage This class represents a basic message that is send over an IRC Connection.
JOINMessage This class represents a JOIN message that is send over an IRC Connection.
NICKMessage This class represents a NICK message that is send over an IRC Connection.
PARTMessage This class represents a PART message that is send over an IRC Connection.
PINGMessage This class represents a PING message that is send over an IRC Connection.
PRIVMSGMessage This class represents a PRIVMSG message that is send over an IRC Connection.
QUITMessage This class represents a QUIT message that is send over an IRC Connection.
ReplyMessage A general reply message from the IRC Server.
SimpleMsgListener A very basic MsgListener that only prints every IRC message that it receives.
SimplePINGListener A basic PINGListener that replies with a PONG message every time it receives a PINGMessage.
SimpleReplyMsgListener A basic ReplyMsgListener that prints the information available about every ReplyMessage that is received.
TOPICMessage This class represents a TOPIC message that is send over an IRC Connection.
Utils A general utilities class.