Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1package org.bukkit.entity;
2
3/**
4 * Represents a Wolf
5 */
6public interface Wolf extends Animals, Tameable {
7
8 /**
9 * Checks if this wolf is angry
10 *
11 * @return Anger true if angry
12 */
13 public boolean isAngry();
14
15 /**
16 * Sets the anger of this wolf
17 * An angry wolf can not be fed or tamed, and will actively look for targets to attack.
18 *
19 * @param angry true if angry
20 */
21 public void setAngry(boolean angry);
22
23 /**
24 * Checks if this wolf is sitting
25 *
26 * @return true if sitting
27 */
28 public boolean isSitting();
29
30 /**
31 * Sets if this wolf is sitting
32 * Will remove any path that the wolf was following beforehand.
33 *
34 * @param sitting true if sitting
35 */
36 public void setSitting(boolean sitting);
37
38}