All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jpower.irc.TopicAddEvent Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
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;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy