Clover Coverage Report - Kuali Student 1.2-M5-SNAPSHOT (Aggregated)
Coverage timestamp: Mon Aug 29 2011 05:04:27 EDT
../../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
18   153   18   1
0   69   1   18
18     1  
1    
 
  MockPerson       Line # 8 18 0% 18 0 100% 1.0
 
  (1)
 
1    package org.kuali.student.core.assembly.data;
2   
3    import java.util.Date;
4    import java.util.List;
5   
6    import org.kuali.student.common.validator.old.ConstraintMockAddress;
7   
 
8    public class MockPerson {
9    protected String firstName;
10   
11    protected String lastName;
12   
13    protected String type;
14   
15    protected String state;
16   
17    protected String id;
18   
19    protected String email;
20   
21    protected Double gpa;
22   
23    protected Date dob;
24   
25    protected List<MockAddress> address;
26   
27    /**
28    * @return the firstName
29    */
 
30  3 toggle public String getFirstName() {
31  3 return firstName;
32    }
33   
34    /**
35    * @param firstName the firstName to set
36    */
 
37  2 toggle public void setFirstName(String firstName) {
38  2 this.firstName = firstName;
39    }
40   
41    /**
42    * @return the lastName
43    */
 
44  3 toggle public String getLastName() {
45  3 return lastName;
46    }
47   
48    /**
49    * @param lastName the lastName to set
50    */
 
51  2 toggle public void setLastName(String lastName) {
52  2 this.lastName = lastName;
53    }
54   
55    /**
56    * @return the type
57    */
 
58  3 toggle public String getType() {
59  3 return type;
60    }
61   
62    /**
63    * @param type the type to set
64    */
 
65  2 toggle public void setType(String type) {
66  2 this.type = type;
67    }
68   
69    /**
70    * @return the state
71    */
 
72  3 toggle public String getState() {
73  3 return state;
74    }
75   
76    /**
77    * @param state the state to set
78    */
 
79  2 toggle public void setState(String state) {
80  2 this.state = state;
81    }
82   
83    /**
84    * @return the id
85    */
 
86  3 toggle public String getId() {
87  3 return id;
88    }
89   
90    /**
91    * @param id the id to set
92    */
 
93  2 toggle public void setId(String id) {
94  2 this.id = id;
95    }
96   
97    /**
98    * @return the email
99    */
 
100  3 toggle public String getEmail() {
101  3 return email;
102    }
103   
104    /**
105    * @param email the email to set
106    */
 
107  2 toggle public void setEmail(String email) {
108  2 this.email = email;
109    }
110   
111    /**
112    * @return the address
113    */
 
114  4 toggle public List<MockAddress> getAddress() {
115  4 return address;
116    }
117   
118    /**
119    * @param address the address to set
120    */
 
121  2 toggle public void setAddress(List<MockAddress> address) {
122  2 this.address = address;
123    }
124   
125    /**
126    * @return the gpa
127    */
 
128  3 toggle public Double getGpa() {
129  3 return gpa;
130    }
131   
132    /**
133    * @param gpa the gpa to set
134    */
 
135  2 toggle public void setGpa(Double gpa) {
136  2 this.gpa = gpa;
137    }
138   
139    /**
140    * @return the dob
141    */
 
142  3 toggle public Date getDob() {
143  3 return dob;
144    }
145   
146    /**
147    * @param dob the dob to set
148    */
 
149  2 toggle public void setDob(Date dob) {
150  2 this.dob = dob;
151    }
152   
153    }