summaryrefslogtreecommitdiffstats
path: root/src/main/java/org
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org')
-rw-r--r--src/main/java/org/bukkit/inventory/AnvilInventory.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/java/org/bukkit/inventory/AnvilInventory.java b/src/main/java/org/bukkit/inventory/AnvilInventory.java
index 70fae71b..289a630e 100644
--- a/src/main/java/org/bukkit/inventory/AnvilInventory.java
+++ b/src/main/java/org/bukkit/inventory/AnvilInventory.java
@@ -4,4 +4,26 @@ package org.bukkit.inventory;
* Interface to the inventory of an Anvil.
*/
public interface AnvilInventory extends Inventory {
+
+ /**
+ * Get the name to be applied to the repaired item. An empty string denotes
+ * the default item name.
+ *
+ * @return the rename text
+ */
+ String getRenameText();
+
+ /**
+ * Get the experience cost (in levels) to complete the current repair.
+ *
+ * @return the experience cost
+ */
+ int getRepairCost();
+
+ /**
+ * Set the experience cost (in levels) to complete the current repair.
+ *
+ * @param levels the experience cost
+ */
+ void setRepairCost(int levels);
}