Coverage Report - org.kuali.student.common.ui.client.configurable.mvc.sections.SwapEventHandler
 
Classes in this File Line Coverage Branch Coverage Complexity
SwapEventHandler
N/A
N/A
1
 
 1  
 package org.kuali.student.common.ui.client.configurable.mvc.sections;
 2  
 
 3  
 /**
 4  
  * 
 5  
  * An event handler interface that handles events on the SwapSection class.  
 6  
  * 
 7  
  * @author SW Genis sw@psybergate.co.za
 8  
  *
 9  
  */
 10  
 public interface SwapEventHandler {
 11  
 
 12  
     /**
 13  
      * 
 14  
      * Called whenever another sections is displayed.
 15  
      * 
 16  
      * @param key
 17  
      */
 18  
     public void onShowSwappableSection(String key, Section section);
 19  
     
 20  
     /**
 21  
      * 
 22  
      * Called whenever a section is removed.
 23  
      * 
 24  
      * @param key
 25  
      */
 26  
     public void onRemoveSwappableSection(String key, Section section);
 27  
 }