001    package org.kuali.student.enrollment.uif.control;
002    
003    import org.kuali.rice.krad.uif.control.ControlBase;
004    
005    public class TimePreviewControl extends ControlBase{
006        private String scheduleId;
007        private String hoverComponentClass;
008    
009        public String getScheduleId() {
010            return scheduleId;
011        }
012    
013        public void setScheduleId(String scheduleId) {
014            this.scheduleId = scheduleId;
015        }
016    
017        public String getHoverComponentClass() {
018            return hoverComponentClass;
019        }
020    
021        /**
022         * It should be noted that this will match on the closest element to this control
023         * with this class, traversing the DOM tree up from this control.
024         */
025        public void setHoverComponentClass(String hoverComponentClass) {
026            this.hoverComponentClass = hoverComponentClass;
027        }
028    }