2013-04-19 12:27:39 +02:00
|
|
|
package com.massivecraft.factions.event;
|
|
|
|
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
|
2013-04-22 17:59:51 +02:00
|
|
|
import com.massivecraft.factions.entity.UPlayer;
|
2013-04-19 12:27:39 +02:00
|
|
|
|
|
|
|
public class FactionsEventTitleChange extends FactionsEventAbstractSender
|
|
|
|
{
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// REQUIRED EVENT CODE
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
private static final HandlerList handlers = new HandlerList();
|
|
|
|
@Override public HandlerList getHandlers() { return handlers; }
|
|
|
|
public static HandlerList getHandlerList() { return handlers; }
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// FIELDS
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2013-04-22 17:59:51 +02:00
|
|
|
private final UPlayer fplayer;
|
|
|
|
public UPlayer getFPlayer() { return this.fplayer; }
|
2013-04-19 12:27:39 +02:00
|
|
|
|
|
|
|
private String newTitle;
|
|
|
|
public String getNewTitle() { return this.newTitle; }
|
|
|
|
public void setNewTitle(String newTitle) { this.newTitle = newTitle; }
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2013-04-22 17:59:51 +02:00
|
|
|
public FactionsEventTitleChange(CommandSender sender, UPlayer fplayer, String newTitle)
|
2013-04-19 12:27:39 +02:00
|
|
|
{
|
|
|
|
super(sender);
|
|
|
|
this.fplayer = fplayer;
|
|
|
|
this.newTitle = newTitle;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|