ShopChest/api/src/main/java/de/epiceric/shopchest/api/event/ShopEvent.java

54 lines
1.1 KiB
Java

package de.epiceric.shopchest.api.event;
import de.epiceric.shopchest.api.player.ShopPlayer;
import de.epiceric.shopchest.api.shop.Shop;
import org.bukkit.event.Event;
import org.bukkit.event.HandlerList;
/**
* Represents a shop related event
*
* @since 2.0
*/
public abstract class ShopEvent extends Event {
private static final HandlerList handlers = new HandlerList();
private Shop shop;
private ShopPlayer player;
public ShopEvent(ShopPlayer player, Shop shop) {
this.player = player;
this.shop = shop;
}
/**
* Get the shop which is involved in this event
*
* @return the shop
* @since 2.0
*/
public Shop getShop() {
return shop;
}
/**
* Gets the player who is involved in this event
*
* @return the player
* @since 2.0
*/
public ShopPlayer getPlayer() {
return player;
}
public static HandlerList getHandlerList() {
return handlers;
}
@Override
public HandlerList getHandlers() {
return handlers;
}
}