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

Packages that use Handler
org.objectweb.util.monolog.api The Monolog API. 
org.objectweb.util.monolog.file.monolog   
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.log4j The wrapper for the logging system log4j. 
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 Handler in org.objectweb.util.monolog.api
 

Subinterfaces of Handler in org.objectweb.util.monolog.api
 interface Logger
          A Logger implementation receives event messages from an object and exports them.
 interface TopicalLogger
          A TopicalLogger dispatches events to a set of Handlers.
 

Methods in org.objectweb.util.monolog.api that return Handler
 Handler HandlerFactory.createHandler(java.lang.String hn, java.lang.String handlertype)
          It retrieves a new instance of an handler which the type is specified by the parameter.
 Handler[] TopicalLogger.getHandler()
          It returns the list of the handler associated to this logger.
 Handler HandlerFactory.getHandler(java.lang.String handlername)
          It retrieves the handler which the name is specified by the parameter
 Handler TopicalLogger.getHandler(java.lang.String hn)
          It returns the handler which the name is equals to the parameter
 Handler[] HandlerFactory.getHandlers()
          It retrieves all handler managed by this factory.
 Handler HandlerFactory.removeHandler(java.lang.String handlername)
          It removes the handler which the name is specified by the parameter
 

Methods in org.objectweb.util.monolog.api with parameters of type Handler
 void TopicalLogger.addHandler(Handler h)
          A TopicalLogger manages a list of Handler instances.
 void MonologFactoryListener.handlerCreated(Handler handler)
          It is called when a new handler has been created by the monolog factory
 void MonologFactoryListener.handlerRemoved(Handler handler)
          It i called when an handler has been removed by the monolog factory
 void TopicalLogger.removeHandler(Handler h)
          A TopicalLogger manages a list of Handler instances.
 

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

Methods in org.objectweb.util.monolog.file.monolog that return Handler
protected  Handler PropertiesConfAccess.parseHandlerProp(java.util.Properties prop, java.lang.String key, HandlerFactory hf)
          It parses a property entry to build or configure a Handler instance.
 

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

Methods in org.objectweb.util.monolog.wrapper.common that return Handler
 Handler AbstractFactory.createHandler(java.lang.String hn, java.lang.String handlertype)
           
 Handler AbstractFactory.getHandler(java.lang.String hn)
           
 Handler[] AbstractFactory.getHandlers()
           
 Handler AbstractFactory.removeHandler(java.lang.String hn)
           
 

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

Classes in org.objectweb.util.monolog.wrapper.config that implement Handler
 class BasicHandler
          This class is a basic implementation the Handler interface.
 class BasicLogger
          This class is a basic implementatio of the TopicalLogger interface.
 

Methods in org.objectweb.util.monolog.wrapper.config that return Handler
 Handler BasicFactory.createHandler(java.lang.String hn, java.lang.String handlertype)
           
 Handler[] BasicLogger.getHandler()
           
 Handler BasicFactory.getHandler(java.lang.String hn)
           
 Handler BasicLogger.getHandler(java.lang.String hn)
           
 Handler[] BasicFactory.getHandlers()
           
 Handler BasicFactory.removeHandler(java.lang.String hn)
           
 

Methods in org.objectweb.util.monolog.wrapper.config with parameters of type Handler
 void BasicLogger.addHandler(Handler h)
           
 void BasicLogger.removeHandler(Handler h)
           
 

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

Classes in org.objectweb.util.monolog.wrapper.javaLog that implement Handler
 class GenericHandler
          Is a generic handler implementation used to wrapper java.util.logging.Handler instance.
 class JMXGenericHandler
          Is a generic handler implementation used to wrapper java.util.logging.Handler instance.
 class Logger
          Is an extension of the java.util.logging.Logger class used to wrap Monolog on the logging system provided in the JDK since the 1.4 version.
 

Methods in org.objectweb.util.monolog.wrapper.javaLog that return Handler
 Handler[] Logger.getHandler()
          Get the Handlers associated with this logger.
 Handler Logger.getHandler(java.lang.String hn)
          It returns the handler which the name is equals to the parameter
 

Methods in org.objectweb.util.monolog.wrapper.javaLog with parameters of type Handler
 void Logger.addHandler(Handler h)
          A TopicalLogger manages a list of Handler instances.
 void Logger.removeHandler(Handler h)
          A TopicalLogger manages a list of Handler instances.
 

Uses of Handler in org.objectweb.util.monolog.wrapper.log4j
 

Classes in org.objectweb.util.monolog.wrapper.log4j that implement Handler
 class ConsoleHandler
           
 class DayFileHandler
          Represents an file handler which the file name changes every days.
 class FileHandler
          This class is the wrapper to the org.apache.log4j.FileAppender
 class JMXHandler
           
 class MonologCategory
          This class wraps the Logger concept into the log4j world.
 class NTEventLogHandler
          This class is the wrapper to the org.apache.log4j.nt.NTEventLogAppender
 class RollingFileHandler
          This class is the wrapper to the org.apache.log4j.RollingFileAppender
 class SocketHubHandler
          This class is the wrapper to the org.apache.log4j.SocketHubAppender
 

Methods in org.objectweb.util.monolog.wrapper.log4j that return Handler
 Handler[] MonologCategory.getHandler()
           
 Handler MonologCategory.getHandler(java.lang.String hn)
           
 

Methods in org.objectweb.util.monolog.wrapper.log4j with parameters of type Handler
 void MonologCategory.addHandler(Handler h)
          Add a handler in the Handler list of the topicalLogger
 void MonologCategory.removeHandler(Handler h)
          Remove a handler from the Handler list of the topicalLogger
 

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

Methods in org.objectweb.util.monolog.wrapper.log4jMini that return Handler
 Handler MonologLoggerFactory.createHandler(java.lang.String hn, java.lang.String handlertype)
           
 Handler[] MonologCategory.getHandler()
           
 Handler MonologCategory.getHandler(java.lang.String hn)
           
 Handler MonologLoggerFactory.getHandler(java.lang.String hn)
           
 Handler[] MonologLoggerFactory.getHandlers()
           
 Handler MonologLoggerFactory.removeHandler(java.lang.String hn)
           
 

Methods in org.objectweb.util.monolog.wrapper.log4jMini with parameters of type Handler
 void MonologCategory.addHandler(Handler h)
          Add a handler in the Handler list of the topicalLogger
 void MonologCategory.removeHandler(Handler h)
          Remove a handler from the Handler list of the topicalLogger
 

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

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

Methods in org.objectweb.util.monolog.wrapper.printwriter that return Handler
 Handler LoggerImpl.createHandler(java.lang.String hn, java.lang.String handlertype)
           
 Handler[] LoggerImpl.getHandler()
           
 Handler LoggerImpl.getHandler(java.lang.String hn)
           
 Handler[] LoggerImpl.getHandlers()
           
 Handler LoggerImpl.removeHandler(java.lang.String handlername)
           
 

Methods in org.objectweb.util.monolog.wrapper.printwriter with parameters of type Handler
 void LoggerImpl.addHandler(Handler h)
           
 void LoggerImpl.removeHandler(Handler h)