psmith      2003/09/04 20:36:46

  Modified:    src/java/org/apache/log4j/chainsaw EventCountListener.java
  Log:
  Extended this interface from EventListener so it can
  be treated uniformly with other listeners.
  
  Revision  Changes    Path
  1.2       +3 -1      
jakarta-log4j/src/java/org/apache/log4j/chainsaw/EventCountListener.java
  
  Index: EventCountListener.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-log4j/src/java/org/apache/log4j/chainsaw/EventCountListener.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- EventCountListener.java   25 Jun 2003 04:05:21 -0000      1.1
  +++ EventCountListener.java   5 Sep 2003 03:36:46 -0000       1.2
  @@ -49,12 +49,14 @@
   
   package org.apache.log4j.chainsaw;
   
  +import java.util.EventListener;
  +
   
   /**
    * Listeners can be notified when the # of events in a particular model
    * changes
    * @author Scott Deboy <[EMAIL PROTECTED]>
    */
  -public interface EventCountListener {
  +public interface EventCountListener  extends EventListener{
     public void eventCountChanged(int currentCount, int totalCount);
   }
  
  
  

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

Reply via email to