Clover Coverage Report - Kuali Student 1.1.1-SNAPSHOT (Aggregated)
Coverage timestamp: Wed Apr 20 2011 04:04:00 EST
../../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
22   187   22   1
0   82   1   22
22     1  
1    
 
  MockAddress       Line # 6 22 0% 22 2 95.5% 0.95454544
 
  (1)
 
1    package org.kuali.student.core.assembly.data;
2   
3    import java.util.List;
4    import java.util.Map;
5   
 
6    public class MockAddress {
7    protected String line1;
8   
9    protected String line2;
10   
11    protected String city;
12   
13    protected String state;
14   
15    protected String country;
16   
17    protected String stateCode;
18   
19    protected List<String> phoneNumbers;
20   
21    protected String type;
22   
23    protected String id;
24   
25    protected String postalCode;
26   
27    protected Map<String,String> attributes;
28   
 
29  2 toggle public Map<String, String> getAttributes() {
30  2 return attributes;
31    }
32   
 
33  2 toggle public void setAttributes(Map<String, String> attributes) {
34  2 this.attributes = attributes;
35    }
36   
37    /**
38    * @return the line1
39    */
 
40  3 toggle public String getLine1() {
41  3 return line1;
42    }
43   
44    /**
45    * @param line1
46    * the line1 to set
47    */
 
48  2 toggle public void setLine1(String line1) {
49  2 this.line1 = line1;
50    }
51   
52    /**
53    * @return the line2
54    */
 
55  3 toggle public String getLine2() {
56  3 return line2;
57    }
58   
59    /**
60    * @param line2
61    * the line2 to set
62    */
 
63  2 toggle public void setLine2(String line2) {
64  2 this.line2 = line2;
65    }
66   
67    /**
68    * @return the city
69    */
 
70  3 toggle public String getCity() {
71  3 return city;
72    }
73   
74    /**
75    * @param city
76    * the city to set
77    */
 
78  2 toggle public void setCity(String city) {
79  2 this.city = city;
80    }
81   
82    /**
83    * @return the country
84    */
 
85  3 toggle public String getCountry() {
86  3 return country;
87    }
88   
89    /**
90    * @param country
91    * the country to set
92    */
 
93  2 toggle public void setCountry(String country) {
94  2 this.country = country;
95    }
96   
97    /**
98    * @return the phoneNumbers
99    */
 
100  1 toggle public List<String> getPhoneNumbers() {
101  1 return phoneNumbers;
102    }
103   
104    /**
105    * @param phoneNumbers
106    * 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  3 toggle public String getType() {
116  3 return type;
117    }
118   
119    /**
120    * @param type
121    * the type to set
122    */
 
123  2 toggle public void setType(String type) {
124  2 this.type = type;
125    }
126   
127    /**
128    * @return the state
129    */
 
130  3 toggle public String getState() {
131  3 return state;
132    }
133   
134    /**
135    * @param state
136    * the state to set
137    */
 
138  2 toggle public void setState(String state) {
139  2 this.state = state;
140    }
141   
142    /**
143    * @return the id
144    */
 
145  3 toggle public String getId() {
146  3 return id;
147    }
148   
149    /**
150    * @param id
151    * the id to set
152    */
 
153  2 toggle public void setId(String id) {
154  2 this.id = id;
155    }
156   
157    /**
158    * @return the postalCode
159    */
 
160  3 toggle public String getPostalCode() {
161  3 return postalCode;
162    }
163   
164    /**
165    * @param postalCode
166    * the postalCode to set
167    */
 
168  2 toggle public void setPostalCode(String postalCode) {
169  2 this.postalCode = postalCode;
170    }
171   
172    /**
173    * @return the stateCode
174    */
 
175  3 toggle public String getStateCode() {
176  3 return stateCode;
177    }
178   
179    /**
180    * @param stateCode
181    * the stateCode to set
182    */
 
183  2 toggle public void setStateCode(String stateCode) {
184  2 this.stateCode = stateCode;
185    }
186   
187    }