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.
361 lines
13 KiB
361 lines
13 KiB
11 years ago
|
package ru.simsonic.rscPermissions.Bukkit;
|
||
11 years ago
|
import net.milkbowl.vault.permission.Permission;
|
||
|
import org.bukkit.OfflinePlayer;
|
||
|
import org.bukkit.World;
|
||
|
import org.bukkit.entity.Player;
|
||
11 years ago
|
import ru.simsonic.rscPermissions.BridgeForBukkitAPI;
|
||
11 years ago
|
|
||
|
public final class VaultChat extends net.milkbowl.vault.chat.Chat
|
||
|
{
|
||
11 years ago
|
private final BridgeForBukkitAPI bridge;
|
||
|
public VaultChat(BridgeForBukkitAPI bridge, Permission perms)
|
||
11 years ago
|
{
|
||
|
super(perms);
|
||
11 years ago
|
this.bridge = bridge;
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getName()
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public boolean isEnabled()
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getPlayerPrefix(String world, String player)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerPrefix(String world, String player, String prefix)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getPlayerSuffix(String world, String player)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerSuffix(String world, String player, String suffix)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getGroupPrefix(String world, String group)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setGroupPrefix(String world, String group, String prefix)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getGroupSuffix(String world, String group)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setGroupSuffix(String world, String group, String suffix)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public int getPlayerInfoInteger(String world, String player, String node, int defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerInfoInteger(String world, String player, String node, int value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public int getGroupInfoInteger(String world, String group, String node, int defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setGroupInfoInteger(String world, String group, String node, int value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public double getPlayerInfoDouble(String world, String player, String node, double defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerInfoDouble(String world, String player, String node, double value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public double getGroupInfoDouble(String world, String group, String node, double defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setGroupInfoDouble(String world, String group, String node, double value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public boolean getPlayerInfoBoolean(String world, String player, String node, boolean defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerInfoBoolean(String world, String player, String node, boolean value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public boolean getGroupInfoBoolean(String world, String group, String node, boolean defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setGroupInfoBoolean(String world, String group, String node, boolean value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getPlayerInfoString(String world, String player, String node, String defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerInfoString(String world, String player, String node, String value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getGroupInfoString(String world, String group, String node, String defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setGroupInfoString(String world, String group, String node, String value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getPlayerPrefix(String world, OfflinePlayer player)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getPlayerPrefix(Player player)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerPrefix(String world, OfflinePlayer player, String prefix)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerPrefix(Player player, String prefix)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getPlayerSuffix(String world, OfflinePlayer player)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getPlayerSuffix(Player player)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerSuffix(String world, OfflinePlayer player, String suffix)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerSuffix(Player player, String suffix)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getGroupPrefix(World world, String group)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setGroupPrefix(World world, String group, String prefix)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getGroupSuffix(World world, String group)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setGroupSuffix(World world, String group, String suffix)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public int getPlayerInfoInteger(String world, OfflinePlayer player, String node, int defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public int getPlayerInfoInteger(Player player, String node, int defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerInfoInteger(String world, OfflinePlayer player, String node, int value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerInfoInteger(Player player, String node, int value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public int getGroupInfoInteger(World world, String group, String node, int defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setGroupInfoInteger(World world, String group, String node, int value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public double getPlayerInfoDouble(String world, OfflinePlayer player, String node, double defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public double getPlayerInfoDouble(Player player, String node, double defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerInfoDouble(String world, OfflinePlayer player, String node, double value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerInfoDouble(Player player, String node, double value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public double getGroupInfoDouble(World world, String group, String node, double defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setGroupInfoDouble(World world, String group, String node, double value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public boolean getPlayerInfoBoolean(String world, OfflinePlayer player, String node, boolean defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public boolean getPlayerInfoBoolean(Player player, String node, boolean defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerInfoBoolean(String world, OfflinePlayer player, String node, boolean value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerInfoBoolean(Player player, String node, boolean value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public boolean getGroupInfoBoolean(World world, String group, String node, boolean defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setGroupInfoBoolean(World world, String group, String node, boolean value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getPlayerInfoString(String world, OfflinePlayer player, String node, String defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getPlayerInfoString(Player player, String node, String defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerInfoString(String world, OfflinePlayer player, String node, String value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setPlayerInfoString(Player player, String node, String value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getGroupInfoString(World world, String group, String node, String defaultValue)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public void setGroupInfoString(World world, String group, String node, String value)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public boolean playerInGroup(String world, OfflinePlayer player, String group)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public boolean playerInGroup(Player player, String group)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String[] getPlayerGroups(String world, OfflinePlayer player)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String[] getPlayerGroups(Player player)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getPrimaryGroup(String world, OfflinePlayer player)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String getPrimaryGroup(Player player)
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
@Override
|
||
|
public String[] getGroups()
|
||
|
{
|
||
11 years ago
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry.");
|
||
11 years ago
|
}
|
||
|
}
|