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