Newer
Older
ultramine_bukkit / src / main / java / org / bukkit / entity / AnimalTamer.java
@vlad20012 vlad20012 on 24 Feb 2017 409 bytes initial
package org.bukkit.entity;

import java.util.UUID;

public interface AnimalTamer
{

	/**
	 * This is the name of the specified AnimalTamer.
	 *
	 * @return The name to reference on tamed animals or null if a name cannot be obtained
	 */
	public String getName();

	/**
	 * This is the UUID of the specified AnimalTamer.
	 *
	 * @return The UUID to reference on tamed animals
	 */
	public UUID getUniqueId();
}