Uses of Class
org.dtools.ini.IniValidator

Uses of IniValidator in org.dtools.ini
 

Fields in org.dtools.ini declared as IniValidator
protected  IniValidator IniSection.validator
          A reference to this (and subclasses) IniSection's IniValidator which validates the name of this IniSection and all IniItems within this IniSection.
protected  IniValidator IniFile.validator
          A reference to this IniFile's IniValidator which validates all names for IniSections and IniItems.
 

Methods in org.dtools.ini that return IniValidator
 IniValidator IniItem.getValidator()
          Gets a reference to this object's IniValidator.
 IniValidator IniSection.getValidator()
          Gets a reference to this object's IniValidator.
 IniValidator IniFile.getValidator()
          Returns a reference to this object's IniValidator which is used to validate names of this IniFile's IniSections and their IniItems.
 

Constructors in org.dtools.ini with parameters of type IniValidator
AdvancedIniFile(IniValidator validator)
          Default constructor which creates a new instance of BasicIniFile and sets the IniFile to have a default IniValidator and to be case insensitive.
AdvancedIniFile(IniValidator validator, boolean caseSensitive)
          Default constructor which creates a new instance of BasicIniFile and sets the IniFile to have a default IniValidator and to be case insensitive.
AdvancedIniSection(String name, IniValidator validator)
          Default constructor which creates a new instance of this IniSection and sets the IniSection to have a default IniValidator and to be case insensitive.
AdvancedIniSection(String name, IniValidator validator, boolean caseSensitive)
          Default constructor which creates a new instance of this IniSection and sets the IniSection to have a default IniValidator and to be case insensitive.
BasicIniFile(IniValidator validator)
          Default constructor which creates a new instance of BasicIniFile and sets the IniFile to have a default IniValidator and to be case insensitive.
BasicIniFile(IniValidator validator, boolean caseSensitive)
          Default constructor which creates a new instance of BasicIniFile and sets the IniFile to have a default IniValidator and to be case insensitive.
BasicIniSection(String name, IniValidator validator)
          Default constructor which creates a new instance of this IniSection and sets the IniSection to have a default IniValidator and to be case insensitive.
BasicIniSection(String name, IniValidator validator, boolean caseSensitive)
          Default constructor which creates a new instance of this IniSection and sets the IniSection to have a default IniValidator and to be case insensitive.
IniFile(IniValidator validator)
          Constructor which creates a new instance of this abstract IniFile and sets the IniFile to be case insensitive.
IniFile(IniValidator validator, boolean caseSensitive)
          Constructor which creates a new instance of this abstract IniFile.
IniItem(String name, IniValidator validator)
          Default constructor which creates a new instance of this IniItem and sets the IniItem to be case insensitive.
IniItem(String name, IniValidator validator, boolean caseSensitive)
          Default constructor which creates a new instance of this IniItem.
IniSection(String name, IniValidator validator)
          Constructor which creates a new instance of this abstract IniSection and sets the IniSection to be case insensitive.
IniSection(String name, IniValidator validator, boolean caseSensitive)
          Constructor which creates a new instance of this abstract IniSection.