Coverage Report - org.kuali.student.enrollment.class2.acal.form.AcademicTermForm
 
Classes in this File Line Coverage Branch Coverage Complexity
AcademicTermForm
0%
0/24
N/A
1
 
 1  
 package org.kuali.student.enrollment.class2.acal.form;
 2  
 
 3  
 import org.kuali.rice.krad.web.form.UifFormBase;
 4  
 import org.kuali.student.enrollment.acal.dto.TermInfo;
 5  
 
 6  
 import java.util.Date;
 7  
 
 8  
 public class AcademicTermForm  extends UifFormBase {
 9  
 
 10  
     private static final long serialVersionUID = 4898118410378641665L;
 11  
 
 12  
     private TermInfo termInfo;
 13  
 
 14  
     private String name;
 15  
     private int instructionalDays;
 16  
     private String termLength;
 17  
     private String termType;
 18  
     private Date startDate;
 19  
     private Date endDate;
 20  
 
 21  0
     public AcademicTermForm(){
 22  0
        termInfo = new TermInfo();
 23  0
     }
 24  
 
 25  
     public String getName() {
 26  0
         return name;
 27  
     }
 28  
 
 29  
     public void setName(String name) {
 30  0
         this.name = name;
 31  0
     }
 32  
 
 33  
     public String getTermType() {
 34  0
         return termType;
 35  
     }
 36  
 
 37  
     public void setTermType(String termType) {
 38  0
         this.termType = termType;
 39  0
     }
 40  
 
 41  
     public Date getStartDate() {
 42  0
         return startDate;
 43  
     }
 44  
 
 45  
     public void setStartDate(Date startDate) {
 46  0
         this.startDate = startDate;
 47  0
     }
 48  
 
 49  
     public Date getEndDate() {
 50  0
         return endDate;
 51  
     }
 52  
 
 53  
     public void setEndDate(Date endDate) {
 54  0
         this.endDate = endDate;
 55  0
     }
 56  
 
 57  
     public TermInfo getTermInfo() {
 58  0
         return termInfo;
 59  
     }
 60  
 
 61  
     public void setTermInfo(TermInfo termInfo) {
 62  0
         this.termInfo = termInfo;
 63  0
     }
 64  
 
 65  
     public int getInstructionalDays() {
 66  0
         return instructionalDays;
 67  
     }
 68  
 
 69  
     public void setInstructionalDays(int instructionalDays) {
 70  0
         this.instructionalDays = instructionalDays;
 71  0
     }
 72  
 
 73  
     public String getTermLength() {
 74  0
         return termLength;
 75  
     }
 76  
 
 77  
     public void setTermLength(String termLength) {
 78  0
         this.termLength = termLength;
 79  0
     }
 80  
 
 81  
 }