ceki        01/07/13 15:19:28

  Added:       src/java/org/apache/log4j/spi HierarchyEventListener.java
  Log:
  Added missing HierarchyEventListener.java
  
  Revision  Changes    Path
  1.1                  
jakarta-log4j/src/java/org/apache/log4j/spi/HierarchyEventListener.java
  
  Index: HierarchyEventListener.java
  ===================================================================
  /*
   * Copyright (C) The Apache Software Foundation. All rights reserved.
   *
   * This software is published under the terms of the Apache Software
   * License version 1.1, a copy of which has been included with this
   * distribution in the LICENSE.txt file.  */
  
  package org.apache.log4j.spi;
  
  import org.apache.log4j.Category;
  
  /**
     
    Implement this interface to create new instances of Category or
    a sub-class of Category.
  
    <p>See {@link org.apache.log4j.examples.MyCategory} for an example.
  
    @author Ceki G&uuml;lc&uuml;
    @since version 0.8.5
     
   */
  public interface HierarchyEventListener {
  
   
    public
    void categoryCreationEvent(Category cat);
  
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to