Coverage Report - biz.xsoftware.examples.advanced.ScheduleListener
 
Classes in this File Line Coverage Branch Coverage Complexity
ScheduleListener
N/A
N/A
1
 
 1  
 /*
 2  
  * Created on Jun 28, 2004
 3  
  *
 4  
  * To change the template for this generated file go to
 5  
  * Window - Preferences - Java - Code Generation - Code and Comments
 6  
  */
 7  
 package biz.xsoftware.examples.advanced;
 8  
 
 9  
 import java.util.EventListener;
 10  
 
 11  
 /**
 12  
  * Listener interface to notify client of an event starting.
 13  
  * 
 14  
  * @author Dean Hiller
 15  
  */
 16  
 public interface ScheduleListener extends EventListener {
 17  
 
 18  
         /**
 19  
          * @param title
 20  
          */
 21  
         void eventStarted(String title);
 22  
 
 23  
 }