jerklib.events
Interface TopicEvent

All Superinterfaces:
IRCEvent
All Known Implementing Classes:
TopicEventImpl

public interface TopicEvent
extends IRCEvent

Event fired when topic is received

Author:
mohadib
See Also:
Channel

Nested Class Summary
 
Nested classes/interfaces inherited from interface jerklib.events.IRCEvent
IRCEvent.Type
 
Method Summary
 Channel getChannel()
          Gets Channel
 String getSetBy()
          Gets who set the topic
 Date getSetWhen()
          Gets when topic was set
 String getTopic()
          Gets the topic
 
Methods inherited from interface jerklib.events.IRCEvent
getRawEventData, getSession, getType
 

Method Detail

getTopic

String getTopic()
Gets the topic

Returns:
the topic

getSetBy

String getSetBy()
Gets who set the topic

Returns:
topic setter

getSetWhen

Date getSetWhen()
Gets when topic was set

Returns:
when

getChannel

Channel getChannel()
Gets Channel

Returns:
Channel
See Also:
Channel