Uses of Interface
net.minecraft.command.ICommand

Packages that use ICommand
cpw.mods.fml.common.event   
cpw.mods.fml.common.modloader   
net.minecraft.command   
net.minecraft.src   
net.minecraftforge.event   
 

Uses of ICommand in cpw.mods.fml.common.event
 

Methods in cpw.mods.fml.common.event with parameters of type ICommand
 void FMLServerStartingEvent.registerServerCommand(ICommand command)
           
 

Uses of ICommand in cpw.mods.fml.common.modloader
 

Methods in cpw.mods.fml.common.modloader with parameters of type ICommand
static void ModLoaderHelper.addCommand(ICommand command)
           
 void ModLoaderModContainer.addServerCommand(ICommand command)
           
 

Uses of ICommand in net.minecraft.command
 

Classes in net.minecraft.command that implement ICommand
 class CommandBase
           
 class CommandClearInventory
           
 class CommandDebug
           
 class CommandDefaultGameMode
           
 class CommandDifficulty
           
 class CommandEnchant
           
 class CommandGameMode
           
 class CommandGameRule
           
 class CommandGive
           
 class CommandHelp
           
 class CommandKill
           
 class CommandServerBan
           
 class CommandServerBanIp
           
 class CommandServerBanlist
           
 class CommandServerDeop
           
 class CommandServerEmote
           
 class CommandServerKick
           
 class CommandServerList
           
 class CommandServerMessage
           
 class CommandServerOp
           
 class CommandServerPardon
           
 class CommandServerPardonIp
           
 class CommandServerPublishLocal
           
 class CommandServerSaveAll
           
 class CommandServerSaveOff
           
 class CommandServerSaveOn
           
 class CommandServerSay
           
 class CommandServerStop
           
 class CommandServerTp
           
 class CommandServerWhitelist
           
 class CommandSetSpawnpoint
           
 class CommandShowSeed
           
 class CommandTime
           
 class CommandToggleDownfall
           
 class CommandWeather
           
 class CommandXP
           
 

Methods in net.minecraft.command that return ICommand
 ICommand CommandHandler.registerCommand(ICommand par1ICommand)
          adds the command and any aliases it has to the internal map of available commands
 

Methods in net.minecraft.command with parameters of type ICommand
 int CommandBase.compareNameTo(ICommand par1ICommand)
          Compares the name of this command to the name of the given command.
 ICommand CommandHandler.registerCommand(ICommand par1ICommand)
          adds the command and any aliases it has to the internal map of available commands
 

Uses of ICommand in net.minecraft.src
 

Methods in net.minecraft.src with parameters of type ICommand
static void ModLoader.addCommand(ICommand command)
           
 

Uses of ICommand in net.minecraftforge.event
 

Fields in net.minecraftforge.event declared as ICommand
 ICommand CommandEvent.command
           
 

Constructors in net.minecraftforge.event with parameters of type ICommand
CommandEvent(ICommand command, ICommandSender sender, String[] parameters)