java.util
Class Properties

java.lang.Object
  |
  +--java.util.Hashtable
        |
        +--java.util.Properties

public synchronized class Properties
extends Hashtable


Field Summary
protected  Properties defaults
           
 
Constructor Summary
Properties()
           
Properties(Properties)
           
 
Method Summary
 String getProperty(String)
           
 String getProperty(String, String)
           
 void list(PrintStream)
           
 void list(PrintWriter)
           
 void load(InputStream)
           
 Enumeration propertyNames()
           
 void save(OutputStream, String)
           
 Object setProperty(String, String)
           
 void store(OutputStream, String)
           
 
Methods inherited from class java.util.Hashtable
get, put
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait
 

Field Detail

defaults

protected Properties defaults
Constructor Detail

Properties

public Properties()

Properties

public Properties(Properties)
Method Detail

setProperty

public Object setProperty(String,
                          String)

load

public void load(InputStream)
          throws IOException
IOException

save

public void save(OutputStream,
                 String)

store

public void store(OutputStream,
                  String)
           throws IOException
IOException

getProperty

public String getProperty(String)

getProperty

public String getProperty(String,
                          String)

propertyNames

public Enumeration propertyNames()

list

public void list(PrintStream)

list

public void list(PrintWriter)