You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
222 lines
8.5 KiB
222 lines
8.5 KiB
10 years ago
|
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.");
|
||
|
}
|
||
|
}
|