org.objectweb.util.monolog.api
Interface MonologFactoryListener


public interface MonologFactoryListener

Defines a listener of event on a MonologFactory.

Author:
M.Idicheffou, S.chassande-Barrioz

Method Summary
 void handlerCreated(Handler handler)
          It is called when a new handler has been created by the monolog factory
 void handlerRemoved(Handler handler)
          It i called when an handler has been removed by the monolog factory
 void levelCreated(Level level)
          It is called when a new level has been created by the monolog factory
 void levelRemoved(Level level)
          It i called when a level has been removed by the monolog factory
 

Method Detail

handlerCreated

public void handlerCreated(Handler handler)
It is called when a new handler has been created by the monolog factory

Parameters:
handler - is the created handler

handlerRemoved

public void handlerRemoved(Handler handler)
It i called when an handler has been removed by the monolog factory

Parameters:
handler - is the removed handler

levelCreated

public void levelCreated(Level level)
It is called when a new level has been created by the monolog factory

Parameters:
level - is the created handler

levelRemoved

public void levelRemoved(Level level)
It i called when a level has been removed by the monolog factory

Parameters:
level - is the removed handler