Uses of Class
net.minecraft.world.WorldSavedData

Packages that use WorldSavedData
net.minecraft.village   
net.minecraft.world   
net.minecraft.world.storage   
 

Uses of WorldSavedData in net.minecraft.village
 

Subclasses of WorldSavedData in net.minecraft.village
 class VillageCollection
           
 

Uses of WorldSavedData in net.minecraft.world
 

Methods in net.minecraft.world that return WorldSavedData
 WorldSavedData World.loadItemData(Class par1Class, String par2Str)
          Loads an existing MapDataBase corresponding to the given String id from disk using the MapStorage, instantiating the given Class, or returns null if none such file exists.
 

Methods in net.minecraft.world with parameters of type WorldSavedData
 void World.setItemData(String par1Str, WorldSavedData par2WorldSavedData)
          Assigns the given String id to the given MapDataBase using the MapStorage, removing any existing ones of the same id.
 

Uses of WorldSavedData in net.minecraft.world.storage
 

Subclasses of WorldSavedData in net.minecraft.world.storage
 class MapData
           
 

Methods in net.minecraft.world.storage that return WorldSavedData
 WorldSavedData MapStorage.loadData(Class par1Class, String par2Str)
          Loads an existing MapDataBase corresponding to the given String id from disk, instantiating the given Class, or returns null if none such file exists.
 

Methods in net.minecraft.world.storage with parameters of type WorldSavedData
 void MapStorage.setData(String par1Str, WorldSavedData par2WorldSavedData)
          Assigns the given String id to the given MapDataBase, removing any existing ones of the same id.