jerklib.events
Interface JoinEvent

All Superinterfaces:
IRCEvent
All Known Implementing Classes:
JoinEventImpl

public interface JoinEvent
extends IRCEvent

JoinIRCEvent is the event that will be dispatched when someone joins a channel

Author:
mohadib

Nested Class Summary
 
Nested classes/interfaces inherited from interface jerklib.events.IRCEvent
IRCEvent.Type
 
Method Summary
 Channel getChannel()
          returns the Channel object joined
 String getChannelName()
          returns the name of the channel joined to cause this event
 String getHostName()
          returns the hostname of the person who joined the channel
 String getNick()
          returns the nick of who joined the channel
 String getUserName()
          return the username in the user's hostmask
 
Methods inherited from interface jerklib.events.IRCEvent
getRawEventData, getSession, getType
 

Method Detail

getNick

String getNick()
returns the nick of who joined the channel

Returns:
Nick of who joined channel

getUserName

String getUserName()
return the username in the user's hostmask

Returns:
username of the user

getHostName

String getHostName()
returns the hostname of the person who joined the channel

Returns:
hostname of the person who joined

getChannelName

String getChannelName()
returns the name of the channel joined to cause this event

Returns:
Name of channel

getChannel

Channel getChannel()
returns the Channel object joined

Returns:
The Channel object
See Also:
Channel