summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/craftbukkit/FakeInventory.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/craftbukkit/FakeInventory.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/craftbukkit/FakeInventory.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/Essentials/src/com/earth2me/essentials/craftbukkit/FakeInventory.java b/Essentials/src/com/earth2me/essentials/craftbukkit/FakeInventory.java
index 992791710..5d1b3b1c3 100644
--- a/Essentials/src/com/earth2me/essentials/craftbukkit/FakeInventory.java
+++ b/Essentials/src/com/earth2me/essentials/craftbukkit/FakeInventory.java
@@ -1,8 +1,13 @@
package com.earth2me.essentials.craftbukkit;
import java.util.HashMap;
+import java.util.List;
+import java.util.ListIterator;
import org.bukkit.Material;
+import org.bukkit.entity.HumanEntity;
+import org.bukkit.event.inventory.InventoryType;
import org.bukkit.inventory.Inventory;
+import org.bukkit.inventory.InventoryHolder;
import org.bukkit.inventory.ItemStack;
@@ -187,4 +192,24 @@ public class FakeInventory implements Inventory
items[i] = null;
}
}
+
+ public List<HumanEntity> getViewers() {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public String getTitle() {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public InventoryType getType() {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public InventoryHolder getHolder() {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public ListIterator<ItemStack> iterator() {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
}