Coverage Report - org.kuali.student.enrollment.uif.control.TimePreviewControl
 
Classes in this File Line Coverage Branch Coverage Complexity
TimePreviewControl
0%
0/7
N/A
1
 
 1  
 package org.kuali.student.enrollment.uif.control;
 2  
 
 3  
 import org.kuali.rice.krad.uif.control.ControlBase;
 4  
 
 5  0
 public class TimePreviewControl extends ControlBase{
 6  
     private String scheduleId;
 7  
     private String hoverComponentClass;
 8  
 
 9  
     public String getScheduleId() {
 10  0
         return scheduleId;
 11  
     }
 12  
 
 13  
     public void setScheduleId(String scheduleId) {
 14  0
         this.scheduleId = scheduleId;
 15  0
     }
 16  
 
 17  
     public String getHoverComponentClass() {
 18  0
         return hoverComponentClass;
 19  
     }
 20  
 
 21  
     /**
 22  
      * It should be noted that this will match on the closest element to this control
 23  
      * with this class, traversing the DOM tree up from this control.
 24  
      */
 25  
     public void setHoverComponentClass(String hoverComponentClass) {
 26  0
         this.hoverComponentClass = hoverComponentClass;
 27  0
     }
 28  
 }