FileDocCategorySizeDatePackage
LoggerFactoryJDK13.javaAPI DocGlassfish v2 API2920Fri May 04 22:35:24 BST 2007com.sun.jdo.spi.persistence.utility.logging

LoggerFactoryJDK13

public class LoggerFactoryJDK13 extends AbstractLoggerFactory
This is a factory which constructs Loggers suitable for JDK1.3.
author
Craig Russell
version
1.0

Fields Summary
Constructors Summary
public LoggerFactoryJDK13()
Creates new LoggerFactoryJDK13

	
Methods Summary
protected LoggercreateLogger(java.lang.String absoluteLoggerName, java.lang.String bundleName, java.lang.ClassLoader loader)
Create a new Logger. Subclasses are responsible for creating a logger for the named component. The bundle name and class loader are passed to allow the implementation to properly find and construct the internationalization bundle.

param
absoluteLoggerName the absolute name of this logger
param
bundleName the fully qualified name of the resource bundle
param
loader the class loader used to load the resource bundle, or null
return
the logger

		return new LoggerJDK13(absoluteLoggerName, bundleName, loader);