2012-03-13 13:58:51 +01:00
|
|
|
package com.massivecraft.factions.event;
|
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
import com.massivecraft.factions.FPlayer;
|
|
|
|
import com.massivecraft.factions.Faction;
|
2012-03-13 13:58:51 +01:00
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.event.Cancellable;
|
|
|
|
import org.bukkit.event.Event;
|
|
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public class FactionRenameEvent extends Event implements Cancellable {
|
|
|
|
private static final HandlerList handlers = new HandlerList();
|
|
|
|
|
|
|
|
private boolean cancelled;
|
|
|
|
private FPlayer fplayer;
|
|
|
|
private Faction faction;
|
|
|
|
private String tag;
|
|
|
|
|
|
|
|
public FactionRenameEvent(FPlayer sender, String newTag) {
|
|
|
|
fplayer = sender;
|
|
|
|
faction = sender.getFaction();
|
|
|
|
tag = newTag;
|
|
|
|
this.cancelled = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Faction getFaction() {
|
|
|
|
return (faction);
|
|
|
|
}
|
|
|
|
|
|
|
|
public FPlayer getFPlayer() {
|
|
|
|
return (fplayer);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Player getPlayer() {
|
|
|
|
return (fplayer.getPlayer());
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getOldFactionTag() {
|
|
|
|
return (faction.getTag());
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getFactionTag() {
|
|
|
|
return (tag);
|
|
|
|
}
|
|
|
|
|
|
|
|
public HandlerList getHandlers() {
|
|
|
|
return handlers;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static HandlerList getHandlerList() {
|
|
|
|
return handlers;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isCancelled() {
|
|
|
|
return cancelled;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setCancelled(boolean c) {
|
|
|
|
this.cancelled = c;
|
|
|
|
}
|
2012-03-13 13:58:51 +01:00
|
|
|
}
|