Add missing javadocs.
This commit is contained in:
@@ -5,9 +5,10 @@ import com.massivecraft.factions.FPlayer;
|
||||
import com.massivecraft.factions.Faction;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.event.Cancellable;
|
||||
import org.bukkit.event.Event;
|
||||
import org.bukkit.event.HandlerList;
|
||||
|
||||
/**
|
||||
* Event called when an FPlayer unclaims land for a Faction.
|
||||
*/
|
||||
public class LandUnclaimEvent extends FactionPlayerEvent implements Cancellable {
|
||||
|
||||
private boolean cancelled;
|
||||
@@ -23,16 +24,37 @@ public class LandUnclaimEvent extends FactionPlayerEvent implements Cancellable
|
||||
return this.location;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the id of the faction.
|
||||
*
|
||||
* @return id of faction as String
|
||||
*
|
||||
* @deprecated use getFaction().getId() instead.
|
||||
*/
|
||||
@Deprecated
|
||||
public String getFactionId() {
|
||||
return getFaction().getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the tag of the faction.
|
||||
*
|
||||
* @return tag of faction as String
|
||||
*
|
||||
* @deprecated use getFaction().getTag() instead.
|
||||
*/
|
||||
@Deprecated
|
||||
public String getFactionTag() {
|
||||
return getFaction().getTag();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the Player involved in the event.
|
||||
*
|
||||
* @return Player from FPlayer.
|
||||
*
|
||||
* @deprecated use getfPlayer().getPlayer() instead.
|
||||
*/
|
||||
@Deprecated
|
||||
public Player getPlayer() {
|
||||
return getfPlayer().getPlayer();
|
||||
|
||||
Reference in New Issue
Block a user