Uses of Class
net.minecraftforge.common.Property

Packages that use Property
net.minecraftforge.common   
 

Uses of Property in net.minecraftforge.common
 

Methods in net.minecraftforge.common that return Property
 Property ConfigCategory.get(Object key)
           
 Property ConfigCategory.get(String key)
           
 Property Configuration.get(String category, String key, boolean defaultValue)
           
 Property Configuration.get(String category, String key, boolean[] defaultValue)
           
 Property Configuration.get(String category, String key, boolean[] defaultValue, String comment)
           
 Property Configuration.get(String category, String key, boolean defaultValue, String comment)
           
 Property Configuration.get(String category, String key, double defaultValue)
           
 Property Configuration.get(String category, String key, double[] defaultValue)
           
 Property Configuration.get(String category, String key, double[] defaultValue, String comment)
           
 Property Configuration.get(String category, String key, double defaultValue, String comment)
           
 Property Configuration.get(String category, String key, int defaultValue)
           
 Property Configuration.get(String category, String key, int[] defaultValue)
           
 Property Configuration.get(String category, String key, int[] defaultValue, String comment)
           
 Property Configuration.get(String category, String key, int defaultValue, String comment)
           
 Property Configuration.get(String category, String key, String defaultValue)
           
 Property Configuration.get(String category, String key, String[] defaultValue)
           
 Property Configuration.get(String category, String key, String[] defaultValue, String comment)
           
 Property Configuration.get(String category, String key, String[] defaultValue, String comment, Property.Type type)
           
 Property Configuration.get(String category, String key, String defaultValue, String comment)
           
 Property Configuration.get(String category, String key, String defaultValue, String comment, Property.Type type)
           
 Property Configuration.getBlock(String key, int defaultID)
          Gets or create a block id property.
 Property Configuration.getBlock(String key, int defaultID, String comment)
           
 Property Configuration.getBlock(String category, String key, int defaultID)
           
 Property Configuration.getBlock(String category, String key, int defaultID, String comment)
           
 Property Configuration.getItem(String key, int defaultID)
           
 Property Configuration.getItem(String key, int defaultID, String comment)
           
 Property Configuration.getItem(String category, String key, int defaultID)
           
 Property Configuration.getItem(String category, String key, int defaultID, String comment)
           
 Property Configuration.getTerrainBlock(String category, String key, int defaultID, String comment)
          Special version of getBlock to be used when you want to garentee the ID you get is below 256 This should ONLY be used by mods who do low level terrain generation, or ones that add new biomes.
 Property ConfigCategory.put(String key, Property value)
           
 Property ConfigCategory.remove(Object key)
           
 

Methods in net.minecraftforge.common that return types with arguments of type Property
 Set<Map.Entry<String,Property>> ConfigCategory.entrySet()
           
static Map<String,Property> ForgeChunkManager.getConfigMapFor(Object mod)
           
 Map<String,Property> ConfigCategory.getValues()
           
 Collection<Property> ConfigCategory.values()
           
 

Methods in net.minecraftforge.common with parameters of type Property
 Property ConfigCategory.put(String key, Property value)
           
 void ConfigCategory.set(String key, Property value)
           
 

Method parameters in net.minecraftforge.common with type arguments of type Property
 void ConfigCategory.putAll(Map<? extends String,? extends Property> m)