Coverage Report - org.kuali.student.enrollment.acal.dto.AcademicCalendarWrapper
 
Classes in this File Line Coverage Branch Coverage Complexity
AcademicCalendarWrapper
0%
0/9
N/A
1
 
 1  
 package org.kuali.student.enrollment.acal.dto;
 2  
 
 3  
 import java.io.Serializable;
 4  
 import java.util.List;
 5  
 import java.util.ArrayList;
 6  
 
 7  
 public class AcademicCalendarWrapper implements Serializable {
 8  
         private static final long serialVersionUID = 1L;
 9  
         
 10  
         AcademicCalendarInfo academicCalendarInfo;
 11  
         List<TermInfo> termInfoList;
 12  
         
 13  0
         public AcademicCalendarWrapper (){
 14  0
                 termInfoList = new ArrayList<TermInfo>();
 15  0
         }
 16  
         /**
 17  
          * @return the academicCalendarInfo
 18  
          */
 19  
         public AcademicCalendarInfo getAcademicCalendarInfo() {
 20  0
                 return academicCalendarInfo;
 21  
         }
 22  
         /**
 23  
          * @param academicCalendarInfo the academicCalendarInfo to set
 24  
          */
 25  
         public void setAcademicCalendarInfo(AcademicCalendarInfo academicCalendarInfo) {
 26  0
                 this.academicCalendarInfo = academicCalendarInfo;
 27  0
         }
 28  
         /**
 29  
          * @return the termInfoList
 30  
          */
 31  
         public List<TermInfo> getTermInfoList() {
 32  0
                 return termInfoList;
 33  
         }
 34  
         /**
 35  
          * @param termInfoList the termInfoList to set
 36  
          */
 37  
         public void setTermInfoList(List<TermInfo> termInfoList) {
 38  0
                 this.termInfoList = termInfoList;
 39  0
         }        
 40  
         
 41  
 }