Uses of Interface
org.objectweb.util.monolog.api.LoggerFactory

Packages that use LoggerFactory
org.objectweb.util.monolog   
org.objectweb.util.monolog.api The Monolog API. 
org.objectweb.util.monolog.file.monolog   
org.objectweb.util.monolog.wrapper.ant   
org.objectweb.util.monolog.wrapper.common Common class between wrapper implementations. 
org.objectweb.util.monolog.wrapper.config   
org.objectweb.util.monolog.wrapper.javaLog The wrapper for the logging system of the JDK 1.4 (or greater). 
org.objectweb.util.monolog.wrapper.log4jMini The wrapper for the logging system log4jMini. 
org.objectweb.util.monolog.wrapper.printwriter Librairies for wrapping Monolog from or to a PrintWriter or PrintStream. 
 

Uses of LoggerFactory in org.objectweb.util.monolog
 

Fields in org.objectweb.util.monolog declared as LoggerFactory
static LoggerFactory Monolog.loggerFactory
          Deprecated. use monologFactory
 

Methods in org.objectweb.util.monolog that return LoggerFactory
static LoggerFactory Monolog.init()
          Deprecated. use initialize()
static LoggerFactory Monolog.init(java.lang.String fileName)
          Deprecated. use getMonologFactory(String)
static LoggerFactory Monolog.init(java.util.Properties properties)
          Deprecated. use getMonologFactory(Properties)
static LoggerFactory Monolog.getLoggerFactory(java.lang.String className)
           
 

Methods in org.objectweb.util.monolog with parameters of type LoggerFactory
static void Monolog.loadMonologConfiguration(java.util.Properties properties, LoggerFactory lf)
          Deprecated. use loadMonologConfiguration(Properties, MonologFactory)
 

Uses of LoggerFactory in org.objectweb.util.monolog.api
 

Subinterfaces of LoggerFactory in org.objectweb.util.monolog.api
 interface MonologFactory
          A monolog factory is a factory for loggers, levels and handlers.
 

Methods in org.objectweb.util.monolog.api that return LoggerFactory
 LoggerFactory Loggable.getLoggerFactory()
          Retrieves the logger factory instance used
 

Methods in org.objectweb.util.monolog.api with parameters of type LoggerFactory
 void Loggable.setLoggerFactory(LoggerFactory lf)
          Assigns the logger factory instance to use
 

Uses of LoggerFactory in org.objectweb.util.monolog.file.monolog
 

Methods in org.objectweb.util.monolog.file.monolog with parameters of type LoggerFactory
static void PropertiesConfAccess.load(java.util.Properties prop, LoggerFactory lof, HandlerFactory hf, LevelFactory lef)
           
static void PropertiesConfAccess.store(java.util.Properties prop, LoggerFactory lof, HandlerFactory hf, LevelFactory lef)
           
 void PropertiesConfAccess.read(java.util.Properties prop, LoggerFactory lof, HandlerFactory hf, LevelFactory lef)
           
 void PropertiesConfAccess.write(java.util.Properties prop, LoggerFactory lof, HandlerFactory hf, LevelFactory lef)
           
protected  Logger PropertiesConfAccess.parseLoggerProp(java.util.Properties prop, java.lang.String key, LoggerFactory lof, HandlerFactory hf, LevelFactory lef)
          It parses a property entry to build or configure a Logger instance.
 

Uses of LoggerFactory in org.objectweb.util.monolog.wrapper.ant
 

Constructors in org.objectweb.util.monolog.wrapper.ant with parameters of type LoggerFactory
MonologBuildListener(LoggerFactory loggerFactory)
           
 

Uses of LoggerFactory in org.objectweb.util.monolog.wrapper.common
 

Subinterfaces of LoggerFactory in org.objectweb.util.monolog.wrapper.common
 interface Configurable
          Deprecated. the use of this interface must be replaced by the use of the MonologFactory interface. This interface is kept for the backward compatibility.
 

Classes in org.objectweb.util.monolog.wrapper.common that implement LoggerFactory
 class AbstractFactory
           
 

Methods in org.objectweb.util.monolog.wrapper.common that return LoggerFactory
static LoggerFactory LoggerFactorySingleton.getLoggerFactory(java.lang.String classname)
           
 

Uses of LoggerFactory in org.objectweb.util.monolog.wrapper.config
 

Classes in org.objectweb.util.monolog.wrapper.config that implement LoggerFactory
 class BasicFactory
          This class is a basic implementation of the monolog factories (HandlerFactory, LoggerFactory and LevelFactory).
 

Uses of LoggerFactory in org.objectweb.util.monolog.wrapper.javaLog
 

Classes in org.objectweb.util.monolog.wrapper.javaLog that implement LoggerFactory
 class LoggerFactory
          is the LoggerFactory for the wrapper to java.util.logging
 

Uses of LoggerFactory in org.objectweb.util.monolog.wrapper.log4jMini
 

Classes in org.objectweb.util.monolog.wrapper.log4jMini that implement LoggerFactory
 class MonologLoggerFactory
           
 

Uses of LoggerFactory in org.objectweb.util.monolog.wrapper.printwriter
 

Classes in org.objectweb.util.monolog.wrapper.printwriter that implement LoggerFactory
 class LoggerImpl
          This class is a simple implementation of the Logger interface provided by the monolog specification.
 

Fields in org.objectweb.util.monolog.wrapper.printwriter declared as LoggerFactory
protected  LoggerFactory PrintWriterImpl.loggerFactory
           
protected  LoggerFactory PrintStreamImpl.loggerFactory
           
 

Methods in org.objectweb.util.monolog.wrapper.printwriter that return LoggerFactory
 LoggerFactory PrintWriterImpl.getLoggerFactory()
          Retrieves the logger factory instance used
 LoggerFactory PrintStreamImpl.getLoggerFactory()
          Retrieves the logger factory instance used
 

Methods in org.objectweb.util.monolog.wrapper.printwriter with parameters of type LoggerFactory
 void PrintWriterImpl.setLoggerFactory(LoggerFactory lf)
          Assigns the logger factory instance to use
 void PrintStreamImpl.setLoggerFactory(LoggerFactory lf)
          Assigns the logger factory instance to use
 

Constructors in org.objectweb.util.monolog.wrapper.printwriter with parameters of type LoggerFactory
PrintWriterImpl(Logger logger, LoggerFactory loggerFactory)
          It builds a PrintWriterImpl instance.