Package com.zerjio.JIRC

Interface Summary
AutoQUITListener The basic interface for a AutoQUITMessage listener.
ErrorListener The basic interface for a ErrorMessage listener.
JOINListener The basic interface for a JOINMessage listener.
MODEListener The basic interface for a MODEMessage and RPL_CHANNELMODEISMessage listener.
MsgListener The basic interface for a general IRC message listener.
NAMESListener The basic interface for a RPL_NAMEREPLYMessage, RPL_ENDOFNAMESMessage 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, RPL_NOTOPICMessage and RPL_TOPICMessage listener.
 

Class Summary
AutoQUITMessage This class represents a QUIT message that the user has sended to the IRC server.
ErrorMessage This class represents an internal error tipically trown when the connection has ended and a message has been tried to be send.
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.
MODEMessage This class represents a MODE 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.
RPL_CHANNELMODEISMessage This class represents a RPL_CHANNELMODEIS message that is send over an IRC Connection.
RPL_ENDOFNAMESMessage This class represents a RPL_ENDOFNAMES message that is send over an IRC Connection.
RPL_NAMEREPLYMessage This class represents a RPL_NAMEREPLY message that is send over an IRC Connection.
RPL_NOTOPICMessage This class represents a RPL_NOTOPIC message that is send over an IRC Connection.
RPL_TOPICMessage This class represents a RPL_TOPIC message that is send over an IRC Connection.
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.