Factions/src/main/java/com/massivecraft/factions/event/EventFactionsNameChange.java

41 lines
1.2 KiB
Java
Raw Normal View History

package com.massivecraft.factions.event;
import org.bukkit.command.CommandSender;
import org.bukkit.event.HandlerList;
2013-04-22 09:37:53 +02:00
import com.massivecraft.factions.entity.Faction;
2014-06-04 16:47:01 +02:00
public class EventFactionsNameChange extends EventFactionsAbstractSender
{
2013-04-10 09:34:14 +02:00
// -------------------------------------------- //
// REQUIRED EVENT CODE
// -------------------------------------------- //
private static final HandlerList handlers = new HandlerList();
2013-04-10 09:34:14 +02:00
@Override public HandlerList getHandlers() { return handlers; }
public static HandlerList getHandlerList() { return handlers; }
2013-04-10 09:34:14 +02:00
// -------------------------------------------- //
// FIELDS
// -------------------------------------------- //
2013-04-10 09:34:14 +02:00
private final Faction faction;
public Faction getFaction() { return this.faction; }
private String newName;
public String getNewName() { return this.newName; }
public void setNewName(String newName) { this.newName = newName; }
2013-04-10 09:34:14 +02:00
// -------------------------------------------- //
// CONSTRUCT
// -------------------------------------------- //
2014-06-04 16:47:01 +02:00
public EventFactionsNameChange(CommandSender sender, Faction faction, String newName)
2013-04-10 09:34:14 +02:00
{
super(sender);
2013-04-10 09:34:14 +02:00
this.faction = faction;
this.newName = newName;
2013-04-10 09:34:14 +02:00
}
}