jpower.irc.TopicAddEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JPower Show documentation
Show all versions of JPower Show documentation
Powerful Library for the JVM
package jpower.irc;
public class TopicAddEvent
{
private Channel channel;
private String topic;
public TopicAddEvent(Channel channel, String topic)
{
this.channel = channel;
this.topic = topic;
}
public Channel getChannel()
{
return channel;
}
public String getTopic()
{
return topic;
}
}