40 lines
1.2 KiB
Java
40 lines
1.2 KiB
Java
package com.massivecraft.factions.event;
|
|
|
|
import com.massivecraft.factions.entity.MPlayer;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
public class EventFactionsTitleChange extends EventFactionsAbstractSender
|
|
{
|
|
// -------------------------------------------- //
|
|
// REQUIRED EVENT CODE
|
|
// -------------------------------------------- //
|
|
|
|
private static final HandlerList handlers = new HandlerList();
|
|
@Override public HandlerList getHandlers() { return handlers; }
|
|
public static HandlerList getHandlerList() { return handlers; }
|
|
|
|
// -------------------------------------------- //
|
|
// FIELDS
|
|
// -------------------------------------------- //
|
|
|
|
private final MPlayer mplayer;
|
|
public MPlayer getMPlayer() { return this.mplayer; }
|
|
|
|
private String newTitle;
|
|
public String getNewTitle() { return this.newTitle; }
|
|
public void setNewTitle(String newTitle) { this.newTitle = newTitle; }
|
|
|
|
// -------------------------------------------- //
|
|
// CONSTRUCT
|
|
// -------------------------------------------- //
|
|
|
|
public EventFactionsTitleChange(CommandSender sender, MPlayer mplayer, String newTitle)
|
|
{
|
|
super(sender);
|
|
this.mplayer = mplayer;
|
|
this.newTitle = newTitle;
|
|
}
|
|
|
|
}
|