4 changed files with 263 additions and 230 deletions
@ -0,0 +1,221 @@
|
||||
package ru.simsonic.rscPermissions.Bukkit; |
||||
import net.milkbowl.vault.permission.Permission; |
||||
import org.bukkit.OfflinePlayer; |
||||
import org.bukkit.World; |
||||
import org.bukkit.entity.Player; |
||||
|
||||
public abstract class VaultDeprecatedChat extends net.milkbowl.vault.chat.Chat |
||||
{ |
||||
public VaultDeprecatedChat(Permission permissions) |
||||
{ |
||||
super(permissions); |
||||
} |
||||
@Override |
||||
@Deprecated |
||||
public int getPlayerInfoInteger(String world, String player, String node, int defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
@Deprecated |
||||
public void setPlayerInfoInteger(String world, String player, String node, int value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public int getGroupInfoInteger(String world, String group, String node, int defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setGroupInfoInteger(String world, String group, String node, int value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
@Deprecated |
||||
public double getPlayerInfoDouble(String world, String player, String node, double defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
@Deprecated |
||||
public void setPlayerInfoDouble(String world, String player, String node, double value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public double getGroupInfoDouble(String world, String group, String node, double defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setGroupInfoDouble(String world, String group, String node, double value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
@Deprecated |
||||
public boolean getPlayerInfoBoolean(String world, String player, String node, boolean defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
@Deprecated |
||||
public void setPlayerInfoBoolean(String world, String player, String node, boolean value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public boolean getGroupInfoBoolean(String world, String group, String node, boolean defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setGroupInfoBoolean(String world, String group, String node, boolean value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
@Deprecated |
||||
public String getPlayerInfoString(String world, String player, String node, String defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
@Deprecated |
||||
public void setPlayerInfoString(String world, String player, String node, String value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public String getGroupInfoString(String world, String group, String node, String defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setGroupInfoString(String world, String group, String node, String value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public int getPlayerInfoInteger(String world, OfflinePlayer player, String node, int defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public int getPlayerInfoInteger(Player player, String node, int defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setPlayerInfoInteger(String world, OfflinePlayer player, String node, int value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setPlayerInfoInteger(Player player, String node, int value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public int getGroupInfoInteger(World world, String group, String node, int defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setGroupInfoInteger(World world, String group, String node, int value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public double getPlayerInfoDouble(String world, OfflinePlayer player, String node, double defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public double getPlayerInfoDouble(Player player, String node, double defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setPlayerInfoDouble(String world, OfflinePlayer player, String node, double value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setPlayerInfoDouble(Player player, String node, double value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public double getGroupInfoDouble(World world, String group, String node, double defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setGroupInfoDouble(World world, String group, String node, double value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public boolean getPlayerInfoBoolean(String world, OfflinePlayer player, String node, boolean defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public boolean getPlayerInfoBoolean(Player player, String node, boolean defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setPlayerInfoBoolean(String world, OfflinePlayer player, String node, boolean value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setPlayerInfoBoolean(Player player, String node, boolean value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public boolean getGroupInfoBoolean(World world, String group, String node, boolean defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setGroupInfoBoolean(World world, String group, String node, boolean value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public String getPlayerInfoString(String world, OfflinePlayer player, String node, String defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public String getPlayerInfoString(Player player, String node, String defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setPlayerInfoString(String world, OfflinePlayer player, String node, String value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setPlayerInfoString(Player player, String node, String value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public String getGroupInfoString(World world, String group, String node, String defaultValue) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
@Override |
||||
public void setGroupInfoString(World world, String group, String node, String value) |
||||
{ |
||||
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
||||
} |
||||
} |
Loading…
Reference in new issue