Coverage Report - org.kuali.student.enrollment.class2.acal.dto.TermWrapper
 
Classes in this File Line Coverage Branch Coverage Complexity
TermWrapper
0%
0/30
N/A
1
 
 1  
 package org.kuali.student.enrollment.class2.acal.dto;
 2  
 
 3  
 import java.io.Serializable;
 4  
 
 5  
 import org.kuali.student.enrollment.acal.dto.TermInfo;
 6  
 import org.kuali.student.enrollment.acal.dto.KeyDateInfo;
 7  
 
 8  
 //This code is for core slice
 9  
 public class TermWrapper implements Serializable {
 10  
         private static final long serialVersionUID = 1L;
 11  
         
 12  
         String id;
 13  
     TermInfo termInfo;
 14  
     KeyDateInfo classesMeetDates;
 15  
     KeyDateInfo registrationPeriod;
 16  
     KeyDateInfo dropPeriodEndsDate;
 17  
     KeyDateInfo finalExaminationsDates;
 18  
     KeyDateInfo gradesDueDate;
 19  
     
 20  0
         public TermWrapper (){
 21  0
                 termInfo = new TermInfo();
 22  0
                 classesMeetDates = new KeyDateInfo();
 23  0
                 registrationPeriod = new KeyDateInfo();
 24  0
                 dropPeriodEndsDate = new KeyDateInfo();
 25  0
                 finalExaminationsDates = new KeyDateInfo();
 26  0
                 gradesDueDate = new KeyDateInfo();
 27  0
         }
 28  
 
 29  
     /**
 30  
          * @return the id
 31  
          */
 32  
         public String getId() {
 33  0
                 return id;
 34  
         }
 35  
         /**
 36  
          * @param id the id to set. It equals to termInfo.getId()
 37  
          */
 38  
         public void setId(String id) {
 39  0
                 this.id = id;
 40  0
         }
 41  
         /**
 42  
          * @return the termInfo
 43  
          */
 44  
         public TermInfo getTermInfo() {
 45  0
                 return termInfo;
 46  
         }
 47  
         /**
 48  
          * @param termInfo the termInfo to set
 49  
          */
 50  
         public void setTermInfo(TermInfo termInfo) {
 51  0
                 this.termInfo = termInfo;
 52  0
         this.id = termInfo.getId();
 53  0
         }
 54  
         /**
 55  
          * @return the classesMeetDates
 56  
          */
 57  
         public KeyDateInfo getClassesMeetDates() {
 58  0
                 return classesMeetDates;
 59  
         }
 60  
         /**
 61  
          * @param classesMeetDates the classesMeetDates to set
 62  
          */
 63  
         public void setClassesMeetDates(KeyDateInfo classesMeetDates) {
 64  0
                 this.classesMeetDates = classesMeetDates;
 65  0
         }
 66  
         /**
 67  
          * @return the registrationPeriod
 68  
          */
 69  
         public KeyDateInfo getRegistrationPeriod() {
 70  0
                 return registrationPeriod;
 71  
         }
 72  
         /**
 73  
          * @param registrationPeriod the registrationPeriod to set
 74  
          */
 75  
         public void setRegistrationPeriod(KeyDateInfo registrationPeriod) {
 76  0
                 this.registrationPeriod = registrationPeriod;
 77  0
         }
 78  
         /**
 79  
          * @return the dropPeriodEndsDate
 80  
          */
 81  
         public KeyDateInfo getDropPeriodEndsDate() {
 82  0
                 return dropPeriodEndsDate;
 83  
         }
 84  
         /**
 85  
          * @param dropPeriodEndsDate the dropPeriodEndsDate to set
 86  
          */
 87  
         public void setDropPeriodEndsDate(KeyDateInfo dropPeriodEndsDate) {
 88  0
                 this.dropPeriodEndsDate = dropPeriodEndsDate;
 89  0
         }
 90  
         /**
 91  
          * @return the finalExaminationsDates
 92  
          */
 93  
         public KeyDateInfo getFinalExaminationsDates() {
 94  0
                 return finalExaminationsDates;
 95  
         }
 96  
         /**
 97  
          * @param finalExaminationsDates the finalExaminationsDates to set
 98  
          */
 99  
         public void setFinalExaminationsDates(KeyDateInfo finalExaminationsDates) {
 100  0
                 this.finalExaminationsDates = finalExaminationsDates;
 101  0
         }
 102  
         /**
 103  
          * @return the gradesDueDate
 104  
          */
 105  
         public KeyDateInfo getGradesDueDate() {
 106  0
                 return gradesDueDate;
 107  
         }
 108  
         /**
 109  
          * @param gradesDueDate the gradesDueDate to set
 110  
          */
 111  
         public void setGradesDueDate(KeyDateInfo gradesDueDate) {
 112  0
                 this.gradesDueDate = gradesDueDate;
 113  0
         }
 114  
     
 115  
 }