Uses of Class
net.minecraft.client.multiplayer.ServerData

Packages that use ServerData
net.minecraft.client   
net.minecraft.client.gui   
net.minecraft.client.multiplayer   
 

Uses of ServerData in net.minecraft.client
 

Methods in net.minecraft.client that return ServerData
 ServerData Minecraft.getServerData()
          Get the current ServerData instance.
 

Methods in net.minecraft.client with parameters of type ServerData
 void Minecraft.setServerData(ServerData par1ServerData)
          Set the current ServerData instance.
 

Uses of ServerData in net.minecraft.client.gui
 

Constructors in net.minecraft.client.gui with parameters of type ServerData
GuiScreenAddServer(GuiScreen par1GuiScreen, ServerData par2ServerData)
           
GuiScreenServerList(GuiScreen par1GuiScreen, ServerData par2ServerData)
           
 

Uses of ServerData in net.minecraft.client.multiplayer
 

Methods in net.minecraft.client.multiplayer that return ServerData
 ServerData ServerList.getServerData(int par1)
          Gets the ServerData instance stored for the given index in the list.
static ServerData ServerData.getServerDataFromNBTCompound(NBTTagCompound par0NBTTagCompound)
          Takes an NBTTagCompound with 'name' and 'ip' keys, returns a ServerData instance.
 

Methods in net.minecraft.client.multiplayer with parameters of type ServerData
 void ServerList.addServerData(ServerData par1ServerData)
          Adds the given ServerData instance to the list.
static void ServerList.func_78852_b(ServerData par0ServerData)
           
 void ServerList.setServer(int par1, ServerData par2ServerData)
          Sets the given index in the list to the given ServerData instance.
 

Constructors in net.minecraft.client.multiplayer with parameters of type ServerData
GuiConnecting(Minecraft par1Minecraft, ServerData par2ServerData)