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

jpower.irc.InviteEvent Maven / Gradle / Ivy

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

public class InviteEvent
{

   private User sender;
   private String channel;

   public InviteEvent(User sender, String channel)
   {
      this.sender = sender;
      this.channel = channel;
   }

   public User getSender()
   {
      return sender;
   }

   public String getChannel()
   {
      return channel;
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy