summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
diff options
context:
space:
mode:
authorementalo <suror@gmx.co.uk>2011-07-17 22:31:12 +0100
committerementalo <suror@gmx.co.uk>2011-07-17 22:31:12 +0100
commit29a15dfe18913b160a615581c0dec9ab1293f090 (patch)
treef2cf5369bc1879f3d733912668bf89d0ffbcfb1c /Essentials/src/com/earth2me/essentials/OfflinePlayer.java
parent2f0086584765dcfd0a32278ecc724d50d1746d2e (diff)
downloadEssentials-29a15dfe18913b160a615581c0dec9ab1293f090.tar
Essentials-29a15dfe18913b160a615581c0dec9ab1293f090.tar.gz
Essentials-29a15dfe18913b160a615581c0dec9ab1293f090.tar.lz
Essentials-29a15dfe18913b160a615581c0dec9ab1293f090.tar.xz
Essentials-29a15dfe18913b160a615581c0dec9ab1293f090.zip
CB #1000 Bukkit #700
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/OfflinePlayer.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/OfflinePlayer.java65
1 files changed, 65 insertions, 0 deletions
diff --git a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
index ff0b73fbd..1e15c30a0 100644
--- a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
+++ b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
@@ -3,6 +3,7 @@ package com.earth2me.essentials;
import java.net.InetSocketAddress;
import java.util.HashSet;
import java.util.List;
+import java.util.Set;
import java.util.UUID;
import org.bukkit.Achievement;
import org.bukkit.Effect;
@@ -23,6 +24,10 @@ import org.bukkit.entity.Vehicle;
import org.bukkit.event.entity.EntityDamageEvent;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.PlayerInventory;
+import org.bukkit.permissions.Permission;
+import org.bukkit.permissions.PermissionAttachment;
+import org.bukkit.permissions.PermissionAttachmentInfo;
+import org.bukkit.plugin.Plugin;
import org.bukkit.util.Vector;
@@ -513,4 +518,64 @@ public class OfflinePlayer implements Player
{
throw new UnsupportedOperationException("Not supported yet.");
}
+
+ public boolean isPermissionSet(String string)
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public boolean isPermissionSet(Permission prmsn)
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public boolean hasPermission(String string)
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public boolean hasPermission(Permission prmsn)
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public PermissionAttachment addAttachment(Plugin plugin, String string, boolean bln)
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public PermissionAttachment addAttachment(Plugin plugin)
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public PermissionAttachment addAttachment(Plugin plugin, String string, boolean bln, int i)
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public PermissionAttachment addAttachment(Plugin plugin, int i)
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public void removeAttachment(PermissionAttachment pa)
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public void recalculatePermissions()
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public Set<PermissionAttachmentInfo> getEffectivePermissions()
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public void setOp(boolean bln)
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
}