Uses of Class
org.dtools.ini.IniFile

Uses of IniFile in org.dtools.ini
 

Subclasses of IniFile in org.dtools.ini
 class AdvancedIniFile
          This implementation of the IniFile interface offers faster performance compared with the BasicIniFile implementation, but at the expense of greater memory usage.
 class BasicIniFile
          A basic\simple implementation of the IniFile interface.
 

Methods in org.dtools.ini with parameters of type IniFile
static boolean IniUtilities.isDisjoint(IniFile ini1, IniFile ini2)
          This predicate tests to see if the two given IniFiles are disjoint, that is, that they do not contain any sections with the same name OR, if the two IniFiles do contain sections with the same name, that those sections are disjoint.
 boolean IniFile.merge(IniFile otherIni)
          This method merges an IniFile with this IniFile, and that all the sections within the other IniFile are copied to this IniFile, and if the two IniFiles share any similarly named sections, then those sections are merged together.
 

Constructors in org.dtools.ini with parameters of type IniFile
IniFileReader(IniFile ini, File file)
          Default constructor, creates a new IniFileReader object which will read from the given file and populate the given data from the file into the given IniFile object.
IniFileWriter(IniFile ini, File file)
          Creates a new IniFileWriter thread instance.