2012-03-02 02:16:45 +01:00
|
|
|
package com.massivecraft.factions.event;
|
|
|
|
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.event.Cancellable;
|
|
|
|
import org.bukkit.event.Event;
|
|
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
|
|
|
|
import com.massivecraft.factions.FPlayer;
|
|
|
|
import com.massivecraft.factions.FPlayers;
|
2013-04-09 12:58:39 +02:00
|
|
|
import com.massivecraft.factions.FactionColl;
|
2012-03-02 02:16:45 +01:00
|
|
|
|
|
|
|
public class FactionCreateEvent extends Event implements Cancellable
|
|
|
|
{
|
|
|
|
private static final HandlerList handlers = new HandlerList();
|
|
|
|
|
|
|
|
private String factionTag;
|
|
|
|
private Player sender;
|
|
|
|
private boolean cancelled;
|
|
|
|
|
2012-03-13 14:27:03 +01:00
|
|
|
public FactionCreateEvent(Player sender, String tag)
|
|
|
|
{
|
|
|
|
this.factionTag = tag;
|
|
|
|
this.sender = sender;
|
|
|
|
this.cancelled = false;
|
|
|
|
}
|
2012-03-02 02:16:45 +01:00
|
|
|
|
2012-03-13 14:27:03 +01:00
|
|
|
public FPlayer getFPlayer()
|
|
|
|
{
|
|
|
|
return FPlayers.i.get(sender);
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getFactionId()
|
|
|
|
{
|
2013-04-09 12:58:39 +02:00
|
|
|
return FactionColl.i.getNextId();
|
2012-03-13 14:27:03 +01:00
|
|
|
}
|
2012-03-09 23:09:33 +01:00
|
|
|
|
2012-03-13 14:27:03 +01:00
|
|
|
public String getFactionTag()
|
|
|
|
{
|
|
|
|
return factionTag;
|
|
|
|
}
|
2012-03-09 23:09:33 +01:00
|
|
|
|
2012-03-13 14:27:03 +01:00
|
|
|
public HandlerList getHandlers()
|
|
|
|
{
|
|
|
|
return handlers;
|
|
|
|
}
|
2012-03-02 02:16:45 +01:00
|
|
|
|
2012-03-13 14:27:03 +01:00
|
|
|
public static HandlerList getHandlerList()
|
|
|
|
{
|
|
|
|
return handlers;
|
|
|
|
}
|
2012-03-02 02:16:45 +01:00
|
|
|
|
2012-03-13 14:27:03 +01:00
|
|
|
@Override
|
|
|
|
public boolean isCancelled()
|
|
|
|
{
|
|
|
|
return cancelled;
|
|
|
|
}
|
2012-03-02 02:16:45 +01:00
|
|
|
|
2012-03-13 14:27:03 +01:00
|
|
|
@Override
|
|
|
|
public void setCancelled(boolean c)
|
|
|
|
{
|
|
|
|
this.cancelled = c;
|
|
|
|
}
|
2012-03-02 02:16:45 +01:00
|
|
|
}
|