java.util
Class Properties

java.lang.Object
  |
  +--java.util.Dictionary
        |
        +--java.util.Hashtable
              |
              +--java.util.Properties
All Implemented Interfaces:
Cloneable, Map, java.io.Serializable

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(java.io.PrintStream)
           
 void list(java.io.PrintWriter)
           
 void load(java.io.InputStream)
           
 Enumeration propertyNames()
           
 void save(java.io.OutputStream, String)
           
 Object setProperty(String, String)
           
 void store(java.io.OutputStream, String)
           
 
Methods inherited from class java.util.Hashtable
clear, clone, contains, containsKey, containsValue, elements, entrySet, equals, get, hashCode, isEmpty, keys, keySet, put, putAll, rehash, remove, size, toString, values
 

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(java.io.InputStream)
          throws java.io.IOException

save

public void save(java.io.OutputStream,
                 String)

store

public void store(java.io.OutputStream,
                  String)
           throws java.io.IOException

getProperty

public String getProperty(String)

getProperty

public String getProperty(String,
                          String)

propertyNames

public Enumeration propertyNames()

list

public void list(java.io.PrintStream)

list

public void list(java.io.PrintWriter)