| Package | Description |
|---|---|
| org.schwering.irc.lib | |
| org.schwering.irc.lib.impl |
IRClib is a library for the client-side of IRC (Internet Relay Chat)
connections.
|
| org.schwering.irc.lib.util |
| Modifier and Type | Method and Description |
|---|---|
void |
IRCEventListener.onInvite(String chan,
IRCUser user,
String passiveNick)
Fired when somebody is invited to a channel.
|
void |
IRCEventAdapter.onInvite(String chan,
IRCUser user,
String passiveNick)
Does nothing in this implementation.
|
void |
IRCEventListener.onJoin(String chan,
IRCUser user)
Fired when somebody joins a channel.
|
void |
IRCEventAdapter.onJoin(String chan,
IRCUser user)
Does nothing in this implementation.
|
void |
IRCEventListener.onKick(String chan,
IRCUser user,
String passiveNick,
String msg)
Fired when somebody is kicked from a channel.
|
void |
IRCEventAdapter.onKick(String chan,
IRCUser user,
String passiveNick,
String msg)
Does nothing in this implementation.
|
void |
IRCEventListener.onMode(IRCUser user,
String passiveNick,
String mode)
Fired when somebody changes somebody's usermodes.
|
void |
IRCEventAdapter.onMode(IRCUser user,
String passiveNick,
String mode)
Does nothing in this implementation.
|
void |
IRCEventListener.onMode(String chan,
IRCUser user,
IRCModeParser modeParser)
Fired when an operator changes the modes of a channel.
|
void |
IRCEventAdapter.onMode(String chan,
IRCUser user,
IRCModeParser modeParser)
Does nothing in this implementation.
|
void |
IRCEventListener.onNick(IRCUser user,
String newNick)
Fired when somebody changes his nickname successfully.
|
void |
IRCEventAdapter.onNick(IRCUser user,
String newNick)
Does nothing in this implementation.
|
void |
IRCEventListener.onNotice(String target,
IRCUser user,
String msg)
Fired when somebody sends a
NOTICE to a user or a group. |
void |
IRCEventAdapter.onNotice(String target,
IRCUser user,
String msg)
Does nothing in this implementation.
|
void |
IRCEventListener.onPart(String chan,
IRCUser user,
String msg)
Fired when somebody parts from a channel.
|
void |
IRCEventAdapter.onPart(String chan,
IRCUser user,
String msg)
Does nothing in this implementation.
|
void |
IRCEventListener.onPrivmsg(String target,
IRCUser user,
String msg)
Fired when a user sends a
PRIVMSG to a user or to a
group. |
void |
IRCEventAdapter.onPrivmsg(String target,
IRCUser user,
String msg)
Does nothing in this implementation.
|
void |
IRCEventListener.onQuit(IRCUser user,
String msg)
Fired when somebody quits from the network.
|
void |
IRCEventAdapter.onQuit(IRCUser user,
String msg)
Does nothing in this implementation.
|
void |
IRCEventListener.onTopic(String chan,
IRCUser user,
String topic)
Fired when the topic is changed by operators.
|
void |
IRCEventAdapter.onTopic(String chan,
IRCUser user,
String topic)
Does nothing in this implementation.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultIRCUser
An immutable
IRCUser. |
| Modifier and Type | Method and Description |
|---|---|
IRCUser |
IRCParser.getUser()
Returns a new
IRCUser object. |
Copyright © 2006–2015. All rights reserved.