2012-03-11 18:28:31 +01:00
|
|
|
package com.massivecraft.factions.event;
|
|
|
|
|
2013-04-19 12:27:39 +02:00
|
|
|
import org.bukkit.command.CommandSender;
|
2012-03-11 18:28:31 +01:00
|
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
|
2013-04-22 09:37:53 +02:00
|
|
|
import com.massivecraft.factions.entity.Faction;
|
2012-03-11 18:28:31 +01:00
|
|
|
|
2014-06-04 16:47:01 +02:00
|
|
|
public class EventFactionsNameChange extends EventFactionsAbstractSender
|
2013-04-19 12:27:39 +02:00
|
|
|
{
|
2013-04-10 09:34:14 +02:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// REQUIRED EVENT CODE
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2012-03-11 18:28:31 +01:00
|
|
|
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-19 12:27:39 +02:00
|
|
|
|
2013-04-10 09:34:14 +02:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// FIELDS
|
|
|
|
// -------------------------------------------- //
|
2013-04-19 12:27:39 +02:00
|
|
|
|
2013-04-10 09:34:14 +02:00
|
|
|
private final Faction faction;
|
|
|
|
public Faction getFaction() { return this.faction; }
|
|
|
|
|
2013-04-24 19:01:17 +02:00
|
|
|
private String newName;
|
|
|
|
public String getNewName() { return this.newName; }
|
|
|
|
public void setNewName(String newName) { this.newName = newName; }
|
2013-04-19 12:27:39 +02:00
|
|
|
|
2013-04-10 09:34:14 +02:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
2013-04-19 12:27:39 +02:00
|
|
|
|
2014-06-04 16:47:01 +02:00
|
|
|
public EventFactionsNameChange(CommandSender sender, Faction faction, String newName)
|
2013-04-10 09:34:14 +02:00
|
|
|
{
|
2013-04-19 12:27:39 +02:00
|
|
|
super(sender);
|
2013-04-10 09:34:14 +02:00
|
|
|
this.faction = faction;
|
2013-04-24 19:01:17 +02:00
|
|
|
this.newName = newName;
|
2013-04-10 09:34:14 +02:00
|
|
|
}
|
2013-04-19 12:27:39 +02:00
|
|
|
|
2012-03-11 18:28:31 +01:00
|
|
|
}
|