Bukkit  1.4.7-R1.0
 All Classes Namespaces Files Functions Variables Enumerator Pages
Tameable.java
Go to the documentation of this file.
1 package org.bukkit.entity;
2 
3 public interface Tameable {
4 
12  public boolean isTamed();
13 
21  public void setTamed(boolean tame);
22 
28  public AnimalTamer getOwner();
29 
37  public void setOwner(AnimalTamer tamer);
38 
39 }