Clover Coverage Report - Kuali Student 1.2 (Aggregated)
Coverage timestamp: Thu Oct 27 2011 21:38:40 UTC
../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
22   194   22   1
0   81   1   22
22     1  
1    
 
  ConstraintMockAddress       Line # 20 22 0% 22 44 0% 0.0
 
No Tests
 
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.List;
19   
 
20    public class ConstraintMockAddress {
21   
22    protected String line1;
23   
24    protected String line2;
25   
26    protected String city;
27   
28    protected String state;
29   
30    protected String country;
31   
32    protected String stateCode;
33   
34    protected String province;
35   
36    protected List<String> phoneNumbers;
37   
38    protected String type;
39   
40    protected String id;
41   
42    protected String postalCode;
43   
44    /**
45    * @return the line1
46    */
 
47  0 toggle public String getLine1() {
48  0 return line1;
49    }
50   
51    /**
52    * @param line1 the line1 to set
53    */
 
54  0 toggle public void setLine1(String line1) {
55  0 this.line1 = line1;
56    }
57   
58    /**
59    * @return the line2
60    */
 
61  0 toggle public String getLine2() {
62  0 return line2;
63    }
64   
65    /**
66    * @param line2 the line2 to set
67    */
 
68  0 toggle public void setLine2(String line2) {
69  0 this.line2 = line2;
70    }
71   
72    /**
73    * @return the city
74    */
 
75  0 toggle public String getCity() {
76  0 return city;
77    }
78   
79    /**
80    * @param city the city to set
81    */
 
82  0 toggle public void setCity(String city) {
83  0 this.city = city;
84    }
85   
86    /**
87    * @return the country
88    */
 
89  0 toggle public String getCountry() {
90  0 return country;
91    }
92   
93    /**
94    * @param country the country to set
95    */
 
96  0 toggle public void setCountry(String country) {
97  0 this.country = country;
98    }
99   
100    /**
101    * @return the phoneNumbers
102    */
 
103  0 toggle public List<String> getPhoneNumbers() {
104  0 return phoneNumbers;
105    }
106   
107    /**
108    * @param phoneNumbers the phoneNumbers to set
109    */
 
110  0 toggle public void setPhoneNumbers(List<String> phoneNumbers) {
111  0 this.phoneNumbers = phoneNumbers;
112    }
113   
114    /**
115    * @return the type
116    */
 
117  0 toggle public String getType() {
118  0 return type;
119    }
120   
121    /**
122    * @param type the type to set
123    */
 
124  0 toggle public void setType(String type) {
125  0 this.type = type;
126    }
127   
128    /**
129    * @return the state
130    */
 
131  0 toggle public String getState() {
132  0 return state;
133    }
134   
135    /**
136    * @param state the state to set
137    */
 
138  0 toggle public void setState(String state) {
139  0 this.state = state;
140    }
141   
142    /**
143    * @return the id
144    */
 
145  0 toggle public String getId() {
146  0 return id;
147    }
148   
149    /**
150    * @param id the id to set
151    */
 
152  0 toggle public void setId(String id) {
153  0 this.id = id;
154    }
155   
156    /**
157    * @return the postalCode
158    */
 
159  0 toggle public String getPostalCode() {
160  0 return postalCode;
161    }
162   
163    /**
164    * @param postalCode the postalCode to set
165    */
 
166  0 toggle public void setPostalCode(String postalCode) {
167  0 this.postalCode = postalCode;
168    }
169   
170    /**
171    * @return the stateCode
172    */
 
173  0 toggle public String getStateCode() {
174  0 return stateCode;
175    }
176   
177    /**
178    * @param stateCode the stateCode to set
179    */
 
180  0 toggle public void setStateCode(String stateCode) {
181  0 this.stateCode = stateCode;
182    }
183   
184   
 
185  0 toggle public String getProvince() {
186  0 return province;
187    }
188   
 
189  0 toggle public void setProvince(String province) {
190  0 this.province = province;
191    }
192   
193   
194    }