View Javadoc

1   package org.kuali.student.enrollment.uif.control;
2   
3   import org.kuali.rice.krad.uif.control.ControlBase;
4   
5   public class TimePreviewControl extends ControlBase{
6       private String scheduleId;
7       private String hoverComponentClass;
8   
9       public String getScheduleId() {
10          return scheduleId;
11      }
12  
13      public void setScheduleId(String scheduleId) {
14          this.scheduleId = scheduleId;
15      }
16  
17      public String getHoverComponentClass() {
18          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          this.hoverComponentClass = hoverComponentClass;
27      }
28  }