2012-03-11 18:28:31 +01:00
|
|
|
package com.massivecraft.factions.event;
|
|
|
|
|
2013-04-19 12:27:39 +02:00
|
|
|
import org.bukkit.command.CommandSender;
|
2012-03-11 18:28:31 +01:00
|
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
|
2013-04-22 09:37:53 +02:00
|
|
|
import com.massivecraft.factions.entity.Faction;
|
2012-03-11 18:28:31 +01:00
|
|
|
|
2014-06-04 16:47:01 +02:00
|
|
|
public class EventFactionsDisband extends EventFactionsAbstractSender
|
2013-04-19 12:27:39 +02:00
|
|
|
{
|
2013-04-10 09:34:14 +02:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// REQUIRED EVENT CODE
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2012-03-11 18:28:31 +01:00
|
|
|
private static final HandlerList handlers = new HandlerList();
|
2013-04-10 09:34:14 +02:00
|
|
|
@Override public HandlerList getHandlers() { return handlers; }
|
|
|
|
public static HandlerList getHandlerList() { return handlers; }
|
2013-04-19 12:27:39 +02:00
|
|
|
|
2013-04-10 09:34:14 +02:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// FIELDS
|
|
|
|
// -------------------------------------------- //
|
2013-04-19 12:27:39 +02:00
|
|
|
|
2013-04-10 09:34:14 +02:00
|
|
|
private final Faction faction;
|
|
|
|
public Faction getFaction() { return this.faction; }
|
|
|
|
|
2013-04-19 12:27:39 +02:00
|
|
|
private final String factionId;
|
|
|
|
public String getFactionId() { return this.factionId; }
|
2013-04-10 09:34:14 +02:00
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
2013-04-19 12:27:39 +02:00
|
|
|
|
2014-06-04 16:47:01 +02:00
|
|
|
public EventFactionsDisband(CommandSender sender, Faction faction)
|
2013-04-10 09:34:14 +02:00
|
|
|
{
|
2013-04-19 12:27:39 +02:00
|
|
|
super(sender);
|
2013-04-10 09:34:14 +02:00
|
|
|
this.faction = faction;
|
2013-04-19 12:27:39 +02:00
|
|
|
this.factionId = faction.getId();
|
2013-04-10 09:34:14 +02:00
|
|
|
}
|
|
|
|
|
2012-03-11 18:28:31 +01:00
|
|
|
}
|