cn.nukkit.event.inventory.PlayerTypingAnvilInventoryEvent Maven / Gradle / Ivy
/*
* https://PowerNukkit.org - The Nukkit you know but Powerful!
* Copyright (C) 2020 José Roberto de Araújo Júnior
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package cn.nukkit.event.inventory;
import cn.nukkit.Player;
import cn.nukkit.api.PowerNukkitOnly;
import cn.nukkit.api.Since;
import cn.nukkit.event.HandlerList;
import cn.nukkit.inventory.AnvilInventory;
import lombok.ToString;
import org.jetbrains.annotations.NotNull;
import javax.annotation.Nullable;
/**
* Fired when a player change anything in the item name in an open Anvil inventory window.
*
* @author joserobjr
* @since 2021-02-14
*/
@PowerNukkitOnly
@Since("1.4.0.0-PN")
@ToString
public class PlayerTypingAnvilInventoryEvent extends InventoryEvent {
private static final HandlerList handlers = new HandlerList();
@PowerNukkitOnly
@Since("1.4.0.0-PN")
public static HandlerList getHandlers() {
return handlers;
}
private final Player player;
private final String previousName;
private final String typedName;
@PowerNukkitOnly
@Since("1.4.0.0-PN")
public PlayerTypingAnvilInventoryEvent(@NotNull Player player, @NotNull AnvilInventory inventory, @Nullable String previousName, @NotNull String typedName) {
super(inventory);
this.player = player;
this.previousName = previousName;
this.typedName = typedName;
}
@Override
@NotNull
public AnvilInventory getInventory() {
return (AnvilInventory) super.getInventory();
}
@PowerNukkitOnly
@Since("1.4.0.0-PN")
@NotNull
public Player getPlayer() {
return player;
}
@PowerNukkitOnly
@Since("1.4.0.0-PN")
@NotNull
public String getTypedName() {
return typedName;
}
@PowerNukkitOnly
@Since("1.4.0.0-PN")
@Nullable
public String getPreviousName() {
return previousName;
}
}