jerklib.events
Interface QuitEvent

All Superinterfaces:
IRCEvent
All Known Implementing Classes:
QuitEventImpl

public interface QuitEvent
extends IRCEvent

This is the event fired when someone quits

Author:
mohadib

Nested Class Summary
 
Nested classes/interfaces inherited from interface jerklib.events.IRCEvent
IRCEvent.Type
 
Method Summary
 List<Channel> getChannelList()
          returns a list of Channel objects the nick who quit was in
 String getHostName()
          get the host name of the user.
 String getNick()
          returns the nick of who quit
 String getQuitMessage()
          getQuitMessage get the quit message
 String getUserName()
          Get the username from the hostmask of the quitted
 
Methods inherited from interface jerklib.events.IRCEvent
getRawEventData, getSession, getType
 

Method Detail

getNick

String getNick()
returns the nick of who quit

Returns:
the nick who quit

getUserName

String getUserName()
Get the username from the hostmask of the quitted

Returns:
the username

getHostName

String getHostName()
get the host name of the user.

Returns:
the hostname of the quitted.

getQuitMessage

String getQuitMessage()
getQuitMessage get the quit message

Returns:
the quit message

getChannelList

List<Channel> getChannelList()
returns a list of Channel objects the nick who quit was in

Returns:
List of channels nick was in
See Also:
Channel