Saber-Factions/src/main/java/com/massivecraft/factions/event/PowerLossEvent.java

85 lines
1.7 KiB
Java
Raw Normal View History

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;
import org.bukkit.event.Cancellable;
2014-07-09 21:01:53 +02:00
/**
* Event called when a player loses power.
*/
public class PowerLossEvent extends FactionPlayerEvent implements Cancellable {
private boolean cancelled = false;
2014-04-04 20:55:21 +02:00
private String message;
public PowerLossEvent(Faction f, FPlayer p) {
super(f, p);
2014-04-04 20:55:21 +02:00
}
2014-07-09 21:01:53 +02:00
/**
* Get the id of the faction.
*
* @return id of faction as String
*
* @deprecated use getFaction().getId() instead.
*/
@Deprecated
2014-04-04 20:55:21 +02:00
public String getFactionId() {
return getFaction().getId();
2014-04-04 20:55:21 +02:00
}
2014-07-09 21:01:53 +02:00
/**
* Get the tag of the faction.
*
* @return tag of faction as String
*
* @deprecated use getFaction().getTag() instead.
*/
@Deprecated
2014-04-04 20:55:21 +02:00
public String getFactionTag() {
return getFaction().getTag();
2014-04-04 20:55:21 +02:00
}
2014-07-09 21:01:53 +02:00
/**
* Get the Player involved in the event.
*
* @return Player from FPlayer.
*
* @deprecated use getfPlayer().getPlayer() instead.
*/
@Deprecated
2014-04-04 20:55:21 +02:00
public Player getPlayer() {
return getfPlayer().getPlayer();
2014-04-04 20:55:21 +02:00
}
2014-07-09 21:01:53 +02:00
/**
* Get the power loss message.
*
* @return power loss message as String.
*/
2014-04-04 20:55:21 +02:00
public String getMessage() {
return message;
}
2014-07-09 21:01:53 +02:00
/**
* Set the power loss message.
*
* @param message
*/
2014-04-04 20:55:21 +02:00
public void setMessage(String message) {
this.message = message;
}
2014-04-04 20:55:21 +02:00
@Override
public boolean isCancelled() {
return cancelled;
}
2014-04-04 20:55:21 +02:00
@Override
public void setCancelled(boolean c) {
this.cancelled = c;
}
}