Clover Coverage Report - KS Contract Documentation Generator 0.0.1-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
15   68   9   2.14
4   46   0.6   3.5
7     1.29  
2    
 
  HasAttributesAndMetaInfo       Line # 20 4 0% 4 9 0% 0.0
  HasAttributesAndMetaInfo.Builder       Line # 39 11 0% 5 17 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2010 The Kuali Foundation Licensed under the Educational Community License, Version 2.0 (the "License"); you may
3    * not use this file except in compliance with the License. You may obtain a copy of the License at
4    * http://www.osedu.org/licenses/ECL-2.0 Unless required by applicable law or agreed to in writing, software distributed
5    * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
6    * implied. See the License for the specific language governing permissions and limitations under the License.
7    */
8    package org.kuali.student.contract.model.test.source;
9   
10    import java.io.Serializable;
11   
12    import javax.xml.bind.annotation.XmlElement;
13    import javax.xml.bind.annotation.XmlTransient;
14   
15    import org.kuali.student.contract.model.test.source.HasAttributesAndMeta;
16    import org.kuali.student.contract.model.test.source.Meta;
17   
18    @SuppressWarnings("serial")
19    @XmlTransient
 
20    public abstract class HasAttributesAndMetaInfo extends HasAttributesInfo implements HasAttributesAndMeta, Serializable {
21   
22    @XmlElement
23    private final MetaInfo meta;
24   
 
25  0 toggle protected HasAttributesAndMetaInfo() {
26  0 meta = null;
27    }
28   
 
29  0 toggle protected HasAttributesAndMetaInfo(HasAttributesAndMeta builder) {
30  0 super(builder);
31  0 this.meta= null != builder.getMeta() ? new MetaInfo.Builder(builder.getMeta()).build() : null;
32    }
33   
 
34  0 toggle @Override
35    public MetaInfo getMeta() {
36  0 return meta;
37    }
38   
 
39    public static class Builder extends HasAttributesInfo.Builder implements HasAttributesAndMeta {
40   
41    private MetaInfo meta;
42   
 
43  0 toggle public Builder() {}
44   
 
45  0 toggle public Builder(HasAttributesAndMeta hasAMInfo) {
46  0 super(hasAMInfo);
47   
48  0 if (null != hasAMInfo.getMeta()) {
49  0 MetaInfo.Builder builder = new MetaInfo.Builder();
50  0 builder.setCreateId(hasAMInfo.getMeta().getCreateId());
51  0 builder.setCreateTime(hasAMInfo.getMeta().getCreateTime());
52  0 builder.setUpdateId(hasAMInfo.getMeta().getUpdateId());
53  0 builder.setUpdateTime(hasAMInfo.getMeta().getUpdateTime());
54  0 builder.setVersionInd(hasAMInfo.getMeta().getVersionInd());
55  0 this.meta = builder.build();
56    }
57    }
58   
 
59  0 toggle @Override
60    public MetaInfo getMeta() {
61  0 return meta;
62    }
63   
 
64  0 toggle public void setMetaInfo(MetaInfo meta) {
65  0 this.meta = meta;
66    }
67    }
68    }