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

jpower.irc.TopicChangeEvent Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package jpower.irc;

public class TopicChangeEvent
{

   private Channel channel;
   private String oldTopic;
   private String newTopic;

   public TopicChangeEvent(Channel channel, String oldTopic, String newTopic)
   {
      this.channel = channel;
      this.oldTopic = oldTopic;
      this.newTopic = newTopic;
   }

   public Channel getChannel()
   {
      return channel;
   }

   public String getOldTopic()
   {
      return oldTopic;
   }

   public String getNewTopic()
   {
      return newTopic;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy