2012-12-19 13:18:56 +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;
|
|
|
|
import org.bukkit.entity.Player;
|
2012-12-19 13:18:56 +01:00
|
|
|
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 PowerLossEvent extends Event implements Cancellable {
|
|
|
|
private static final HandlerList handlers = new HandlerList();
|
|
|
|
|
|
|
|
private boolean cancelled;
|
|
|
|
private Faction faction;
|
|
|
|
private FPlayer fplayer;
|
|
|
|
private String message;
|
|
|
|
|
|
|
|
public PowerLossEvent(Faction f, FPlayer p) {
|
|
|
|
cancelled = false;
|
|
|
|
faction = f;
|
|
|
|
fplayer = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public HandlerList getHandlers() {
|
|
|
|
return handlers;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static HandlerList getHandlerList() {
|
|
|
|
return handlers;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Faction getFaction() {
|
|
|
|
return faction;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getFactionId() {
|
|
|
|
return faction.getId();
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getFactionTag() {
|
|
|
|
return faction.getTag();
|
|
|
|
}
|
|
|
|
|
|
|
|
public FPlayer getFPlayer() {
|
|
|
|
return fplayer;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Player getPlayer() {
|
|
|
|
return fplayer.getPlayer();
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getMessage() {
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMessage(String message) {
|
|
|
|
this.message = message;
|
|
|
|
}
|
2012-12-19 13:18:56 +01:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
@Override
|
|
|
|
public boolean isCancelled() {
|
|
|
|
return cancelled;
|
|
|
|
}
|
2012-12-19 13:18:56 +01:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
@Override
|
|
|
|
public void setCancelled(boolean c) {
|
|
|
|
this.cancelled = c;
|
|
|
|
}
|
2012-12-19 13:18:56 +01:00
|
|
|
|
|
|
|
}
|