jpower.irc.MessageEvent 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 MessageEvent
{
private Sendable sender;
private Sendable target;
private String message;
public MessageEvent(Sendable sender, Sendable target, String message)
{
this.sender = sender;
this.target = target;
this.message = message;
}
public Sendable getSender()
{
return sender;
}
public Sendable getTarget()
{
return target;
}
public String getMessage()
{
return message;
}
}