net.minecraft.src
Interface ICommandSender

All Known Implementing Classes:
DedicatedServer, EntityClientPlayerMP, EntityOtherPlayerMP, EntityPlayer, EntityPlayerMP, EntityPlayerSP, IntegratedServer, MinecraftServer, RConConsoleSource

public interface ICommandSender


Method Summary
 boolean canCommandSenderUseCommand(String var1)
          Returns true if the command sender is allowed to use the given command.
 String getCommandSenderName()
          Gets the name of this command sender (usually username, but possibly "Rcon")
 void sendChatToPlayer(String var1)
           
 String translateString(String var1, Object... var2)
          Translates and formats the given string key with the given arguments.
 

Method Detail

getCommandSenderName

String getCommandSenderName()
Gets the name of this command sender (usually username, but possibly "Rcon")


sendChatToPlayer

void sendChatToPlayer(String var1)

canCommandSenderUseCommand

boolean canCommandSenderUseCommand(String var1)
Returns true if the command sender is allowed to use the given command.


translateString

String translateString(String var1,
                       Object... var2)
Translates and formats the given string key with the given arguments.