summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/event/player/PlayerShearEntityEvent.java
blob: 4fe6bb1a5d3210fef91e2e0bbcd08d60c7102550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package org.bukkit.event.player;

import java.util.List;

import org.bukkit.entity.Entity;
import org.bukkit.entity.Player;
import org.bukkit.event.Cancellable;
import org.bukkit.event.HandlerList;
import org.bukkit.inventory.ItemStack;

/**
 * Called when a player shears an entity
 */
public class PlayerShearEntityEvent extends PlayerEvent implements Cancellable {
    private static final HandlerList handlers = new HandlerList();
    private boolean cancel;
    private final Entity what;
    private final List<ItemStack> items;

    public PlayerShearEntityEvent(final Player who, final Entity what, final List<ItemStack> drops) {
        super(who);
        this.cancel = false;
        this.what = what;
        this.items = drops;
    }

    public boolean isCancelled() {
        return cancel;
    }

    public void setCancelled(boolean cancel) {
        this.cancel = cancel;
    }

    /**
     * Gets the entity the player is shearing
     *
     * @return the entity the player is shearing
     */
    public Entity getEntity() {
        return what;
    }

    /**
     * Get the items that will drop as a result of the shearing. To change the
     * items dropped, change the contents of this list.
     * @return The list of items.
     */
    public List<ItemStack> getDrops() {
        return items;
    }

    @Override
    public HandlerList getHandlers() {
        return handlers;
    }

    public static HandlerList getHandlerList() {
        return handlers;
    }

}