jerklib.events
Interface InviteEvent

All Superinterfaces:
IRCEvent
All Known Implementing Classes:
InviteEventImpl

public interface InviteEvent
extends IRCEvent

Event fired when an Invite message is recieved from server

Author:
Robert O'Connor

Nested Class Summary
 
Nested classes/interfaces inherited from interface jerklib.events.IRCEvent
IRCEvent.Type
 
Method Summary
 String getChannelName()
          Gets the channel name to which we were invited to
 String getHostName()
          Gets the hostname of the user who invited us.
 String getNick()
          Gets the nick of the person who invited us
 String getUserName()
          Gets the username from the user's hostmask
 
Methods inherited from interface jerklib.events.IRCEvent
getRawEventData, getSession, getType
 

Method Detail

getNick

String getNick()
Gets the nick of the person who invited us

Returns:
the nick of the person who invited us

getUserName

String getUserName()
Gets the username from the user's hostmask

Returns:
the username of the user who invited us.

getHostName

String getHostName()
Gets the hostname of the user who invited us.

Returns:
the hostname of the person who invited us

getChannelName

String getChannelName()
Gets the channel name to which we were invited to

Returns:
the channel we were invited to.