Open SiteSearch 4.1.1
Final

ORG.oclc.ecat.util
Class IniFile

java.lang.Object
  |
  +--ORG.oclc.ecat.util.IniFile

public class IniFile
extends Object

IniFile reads, indexes and provides access to 'windows' type .ini files %w% 10/21/98


Constructor Summary
IniFile(InputStream is)
           
 
Method Summary
 void dump(PrintStream ps)
           
 boolean getBooleanValue(String mainKey, String subKey, boolean deflt)
           
 int getIntValue(String mainKey, String subKey, int deflt)
           
 IniFileSection getSection(String mainKey)
           
 Enumeration getSections()
           
 String getValue(String mainKey, String subKey)
           
static void main(String[] argv)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IniFile

public IniFile(InputStream is)
Method Detail

getValue

public String getValue(String mainKey,
                       String subKey)

getIntValue

public int getIntValue(String mainKey,
                       String subKey,
                       int deflt)

getBooleanValue

public boolean getBooleanValue(String mainKey,
                               String subKey,
                               boolean deflt)

getSection

public IniFileSection getSection(String mainKey)

dump

public void dump(PrintStream ps)

getSections

public Enumeration getSections()

main

public static void main(String[] argv)

Open SiteSearch 4.1.1
Final