Clover Coverage Report - Kuali Student 1.1.0-M10-SNAPSHOT (Aggregated)
Coverage timestamp: Fri Dec 17 2010 05:04:51 EST
../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
18   166   18   1
0   68   1   18
18     1  
1    
 
  ConstraintMockPerson       Line # 21 18 0% 18 0 100% 1.0
 
  (8)
 
1    /**
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10    * software distributed under the License is distributed on an "AS IS"
11    * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12    * or implied. See the License for the specific language governing
13    * permissions and limitations under the License.
14    */
15   
16    package org.kuali.student.common.validator;
17   
18    import java.util.Date;
19    import java.util.List;
20   
 
21    public class ConstraintMockPerson {
22   
23    protected String firstName;
24   
25    protected String lastName;
26   
27    protected String type;
28   
29    protected String state;
30   
31    protected String id;
32   
33    protected String email;
34   
35    protected Double gpa;
36   
37    protected Date dob;
38   
39    protected List<ConstraintMockAddress> address;
40   
41    /**
42    * @return the firstName
43    */
 
44  10 toggle public String getFirstName() {
45  10 return firstName;
46    }
47   
48    /**
49    * @param firstName the firstName to set
50    */
 
51  12 toggle public void setFirstName(String firstName) {
52  12 this.firstName = firstName;
53    }
54   
55    /**
56    * @return the lastName
57    */
 
58  10 toggle public String getLastName() {
59  10 return lastName;
60    }
61   
62    /**
63    * @param lastName the lastName to set
64    */
 
65  8 toggle public void setLastName(String lastName) {
66  8 this.lastName = lastName;
67    }
68   
69    /**
70    * @return the type
71    */
 
72  10 toggle public String getType() {
73  10 return type;
74    }
75   
76    /**
77    * @param type the type to set
78    */
 
79  8 toggle public void setType(String type) {
80  8 this.type = type;
81    }
82   
83    /**
84    * @return the state
85    */
 
86  10 toggle public String getState() {
87  10 return state;
88    }
89   
90    /**
91    * @param state the state to set
92    */
 
93  8 toggle public void setState(String state) {
94  8 this.state = state;
95    }
96   
97    /**
98    * @return the id
99    */
 
100  10 toggle public String getId() {
101  10 return id;
102    }
103   
104    /**
105    * @param id the id to set
106    */
 
107  8 toggle public void setId(String id) {
108  8 this.id = id;
109    }
110   
111    /**
112    * @return the email
113    */
 
114  10 toggle public String getEmail() {
115  10 return email;
116    }
117   
118    /**
119    * @param email the email to set
120    */
 
121  8 toggle public void setEmail(String email) {
122  8 this.email = email;
123    }
124   
125    /**
126    * @return the address
127    */
 
128  12 toggle public List<ConstraintMockAddress> getAddress() {
129  12 return address;
130    }
131   
132    /**
133    * @param address the address to set
134    */
 
135  1 toggle public void setAddress(List<ConstraintMockAddress> address) {
136  1 this.address = address;
137    }
138   
139    /**
140    * @return the gpa
141    */
 
142  10 toggle public Double getGpa() {
143  10 return gpa;
144    }
145   
146    /**
147    * @param gpa the gpa to set
148    */
 
149  2 toggle public void setGpa(Double gpa) {
150  2 this.gpa = gpa;
151    }
152   
153    /**
154    * @return the dob
155    */
 
156  10 toggle public Date getDob() {
157  10 return dob;
158    }
159   
160    /**
161    * @param dob the dob to set
162    */
 
163  3 toggle public void setDob(Date dob) {
164  3 this.dob = dob;
165    }
166    }