Clover Coverage Report - Kuali Student 1.3.0-SNAPSHOT (Aggregated)
Coverage timestamp: Thu Apr 28 2011 05:03:32 EDT
../../../../../../img/srcFileCovDistChart5.png 1% of files have more coverage
47   191   23   2.04
0   143   0.49   11.5
23     1  
2    
Warning
  • The source file used to generate this report was changed after Clover generated coverage information. The coverage reported may not match the source lines. You should regenerate the coverage information and the report to ensure the files are in sync.
 
  ContextInfo       Line # 36 21 0% 8 18 37.9% 0.37931034
  ContextInfo.Builder       Line # 105 26 0% 15 17 58.5% 0.58536583
 
  (5)
 
1    /*
2    * Copyright 2007 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 1.0 (the
5    * "License"); you may not use this file except in compliance with the
6    * License. You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl1.php
9    *
10    * Unless required by applicable law or agreed to in writing, software
11    * distributed under the License is distributed on an "AS IS" BASIS,
12    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13    * See the License for the specific language governing permissions and
14    * limitations under the License.
15    */
16    package org.kuali.student.r2.common.dto;
17   
18    import java.io.Serializable;
19    import java.util.List;
20   
21    import javax.xml.bind.annotation.XmlAccessType;
22    import javax.xml.bind.annotation.XmlAccessorType;
23    import javax.xml.bind.annotation.XmlAnyElement;
24    import javax.xml.bind.annotation.XmlElement;
25    import javax.xml.bind.annotation.XmlType;
26   
27    import org.kuali.student.r2.common.infc.Context;
28    import org.kuali.student.r2.common.infc.ModelBuilder;
29    import org.w3c.dom.Element;
30   
31    /**
32    * @author Kamal
33    */
34    @XmlAccessorType(XmlAccessType.FIELD)
35    @XmlType(name = "ContextInfo", propOrder = {"principalId", "localeLanguage", "localeVariant", "localeRegion", "localeScript", "timeZone", "attributes", "_futureElements"})
 
36    public class ContextInfo extends HasAttributesInfo implements Context, Serializable {
37   
38    private static final long serialVersionUID = 1L;
39    @XmlElement
40    private final String principalId;
41    @XmlElement
42    private final String localeLanguage;
43    @XmlElement
44    private final String localeVariant;
45    @XmlElement
46    private final String localeRegion;
47    @XmlElement
48    private final String localeScript;
49    @XmlElement
50    private final String timeZone;
51    @XmlAnyElement
52    private final List<Element> _futureElements;
53   
 
54  0 toggle private ContextInfo() {
55  0 principalId = null;
56  0 localeLanguage = null;
57  0 localeVariant = null;
58  0 localeRegion = null;
59  0 localeScript = null;
60  0 timeZone = null;
61  0 _futureElements = null;
62    }
63   
 
64  7 toggle private ContextInfo(Context builder) {
65  7 super(builder);
66  7 this.principalId = builder.getPrincipalId();
67  7 this.localeLanguage = builder.getLocaleLanguage();
68  7 this.localeVariant = builder.getLocaleVariant();
69  7 this.localeRegion = builder.getLocaleRegion();
70  7 this.localeScript = builder.getLocaleScript();
71  7 this.timeZone = builder.getTimeZone();
72  7 this._futureElements = null;
73    }
74   
 
75  24 toggle @Override
76    public String getPrincipalId() {
77  24 return principalId;
78    }
79   
 
80  0 toggle @Override
81    public String getLocaleLanguage() {
82  0 return localeLanguage;
83    }
84   
 
85  0 toggle @Override
86    public String getLocaleVariant() {
87  0 return localeVariant;
88    }
89   
 
90  0 toggle @Override
91    public String getLocaleRegion() {
92  0 return localeRegion;
93    }
94   
 
95  0 toggle @Override
96    public String getLocaleScript() {
97  0 return localeScript;
98    }
99   
 
100  0 toggle @Override
101    public String getTimeZone() {
102  0 return timeZone;
103    }
104   
 
105    public static class Builder extends HasAttributesInfo.Builder implements ModelBuilder<ContextInfo>, Context {
106   
107    private String principalId;
108    private String localeLanguage;
109    private String localeVariant;
110    private String localeRegion;
111    private String localeScript;
112    private String timeZone;
113   
 
114  7 toggle public Builder() {
115    }
116   
 
117  0 toggle public Builder(Context ctxInfo) {
118  0 super(ctxInfo);
119  0 this.principalId = ctxInfo.getPrincipalId();
120  0 this.localeLanguage = ctxInfo.getLocaleLanguage();
121  0 this.localeVariant = ctxInfo.getLocaleVariant();
122  0 this.localeRegion = ctxInfo.getLocaleRegion();
123  0 this.localeScript = ctxInfo.getLocaleScript();
124  0 this.timeZone = ctxInfo.getTimeZone();
125    }
126   
 
127  7 toggle public ContextInfo build() {
128  7 return new ContextInfo(this);
129    }
130   
 
131  7 toggle @Override
132    public String getPrincipalId() {
133  7 return principalId;
134    }
135   
 
136  7 toggle @Override
137    public String getLocaleLanguage() {
138  7 return localeLanguage;
139    }
140   
 
141  7 toggle @Override
142    public String getLocaleVariant() {
143  7 return localeVariant;
144    }
145   
 
146  7 toggle @Override
147    public String getLocaleRegion() {
148  7 return localeRegion;
149    }
150   
 
151  7 toggle @Override
152    public String getLocaleScript() {
153  7 return localeScript;
154    }
155   
 
156  7 toggle @Override
157    public String getTimeZone() {
158  7 return timeZone;
159    }
160   
 
161  7 toggle public Builder principalId(String principalId) {
162  7 this.principalId = principalId;
163  7 return this;
164    }
165   
 
166  7 toggle public Builder localeLanguage(String localeLanguage) {
167  7 this.localeLanguage = localeLanguage;
168  7 return this;
169    }
170   
 
171  7 toggle public Builder localeRegion(String localeRegion) {
172  7 this.localeRegion = localeRegion;
173  7 return this;
174    }
175   
 
176  0 toggle public Builder localeVariant(String localeVariant) {
177  0 this.localeVariant = localeVariant;
178  0 return this;
179    }
180   
 
181  0 toggle public Builder localeScript(String localeScript) {
182  0 this.localeScript = localeScript;
183  0 return this;
184    }
185   
 
186  0 toggle public Builder timeZone(String timeZone) {
187  0 this.timeZone = timeZone;
188  0 return this;
189    }
190    }
191    }