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

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[] HandlerFactory.getHandlers()
          It retrieves all handler managed by this factory.
 Handler HandlerFactory.getHandler(java.lang.String handlername)
          It retrieves the handler which the name is specified by the parameter
 Handler HandlerFactory.removeHandler(java.lang.String handlername)
          It removes the handler which the name is specified by the parameter
 Handler[] TopicalLogger.getHandler()
          It returns the list of the handler associated to this logger.
 Handler TopicalLogger.getHandler(java.lang.String hn)
          It returns the handler which the name is equals to 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 TopicalLogger.removeHandler(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