Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.util.Properties

Availability: JDK 1.0

public class Properties extends Hashtable {
   // Public Constructors
      public Properties();
      public Properties(Properties defaults);
   // Protected Instance Variables
      protected Properties defaults;
   // Public Instance Methods
      public String getProperty(String key);
      public String getProperty(String key, String defaultValue);
      public void list(PrintStream out);
1.1  public void list(PrintWriter out);
      public synchronized void load(InputStream in) throws IOException;
      public Enumeration propertyNames();
      public synchronized void save(OutputStream out, String header);
}
Extended By:
Provider.
Passed To:
Driver.connect(), Driver.getPropertyInfo(), DriverManager.getConnection(), Properties.Properties(), System.setProperties(), Toolkit.getPrintJob().
Returned By:
System.getProperties().
Type Of:
Properties.defaults.

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.