2012-03-02 02:16:45 +01:00
|
|
|
package com.massivecraft.factions.event;
|
|
|
|
|
2013-04-12 09:47:43 +02:00
|
|
|
import org.bukkit.command.CommandSender;
|
2012-03-02 02:16:45 +01:00
|
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
|
2013-04-19 12:27:39 +02:00
|
|
|
public class FactionsEventCreate extends FactionsEventAbstractSender
|
2012-03-02 02:16:45 +01:00
|
|
|
{
|
2013-04-10 09:34:14 +02:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// REQUIRED EVENT CODE
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2012-03-02 02:16:45 +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; }
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// FIELDS
|
|
|
|
// -------------------------------------------- //
|
2013-04-12 09:47:43 +02:00
|
|
|
|
|
|
|
// TODO: How do we know what universe? Should we perhaps actually create the faction?
|
2013-04-10 09:34:14 +02:00
|
|
|
|
2012-03-02 02:16:45 +01:00
|
|
|
private String factionTag;
|
2013-04-10 09:34:14 +02:00
|
|
|
public String getFactionTag() { return this.factionTag; }
|
|
|
|
|
2013-04-12 09:47:43 +02:00
|
|
|
private 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
|
|
|
public FactionsEventCreate(CommandSender sender, String factionTag, String factionId)
|
2012-03-13 14:27:03 +01:00
|
|
|
{
|
2013-04-19 12:27:39 +02:00
|
|
|
super(sender);
|
2013-04-12 09:47:43 +02:00
|
|
|
this.factionTag = factionTag;
|
|
|
|
this.factionId = factionId;
|
2012-03-13 14:27:03 +01:00
|
|
|
}
|
2012-03-02 02:16:45 +01:00
|
|
|
|
|
|
|
}
|