FileDocCategorySizeDatePackage
NiceProperties.javaAPI DocGlassfish v2 API2929Fri May 04 22:32:08 BST 2007None

NiceProperties

public class NiceProperties extends Properties

Fields Summary
static Logger
_logger
private static boolean
debug
Constructors Summary
Methods Summary
public java.lang.StringgetProperty(java.lang.String key)

    // END OF IASRI 4679641
    
        
	/** IASRI 4660742
	if (debug) System.out.println("Looking for key (" + key + ") in the props file, got (" + super.getProperty(key) + ")");
	**/
	// START OF IASRI 4660742
	if (debug && _logger.isLoggable(Level.FINE)) {
	   _logger.log(Level.FINE,"Looking for key (" + key + 
	   ") in the props file, got (" + super.getProperty(key) + ")");
  }
	// END OF IASRI 4660742
	return super.getProperty(key);