did.gui
Class DIDProperties

java.lang.Object
  |
  +--java.util.Dictionary
        |
        +--java.util.Hashtable
              |
              +--java.util.Properties
                    |
                    +--did.gui.DIDProperties

public class DIDProperties
extends java.util.Properties

File:         DIDProperties.java
Version:      1.1
Description:  An extension of the Java Properties class implmented as a singleton.  This
class handles all the user configurable settings for this application.

Modification Log:
Date          Name    Comment
xx-xx-xxxx    XXX	   xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

See Also:
Serialized Form

Fields inherited from class java.util.Properties
defaults
 
Method Summary
static DIDProperties getInstance()
          This method is used to retrieve the only instance of this class stored locally as an attribute.
 
Methods inherited from class java.util.Properties
getProperty, getProperty, list, list, load, propertyNames, save, setProperty, store
 
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
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Method Detail

getInstance

public static DIDProperties getInstance()
This method is used to retrieve the only instance of this class stored locally as an attribute. If the attribute is null the constructor is called and a new instance is created.
Returns:
An instance of this class.
See Also:
#instance