Clover Coverage Report - Kuali Student 1.1.0-SNAPSHOT (Aggregated)
Coverage timestamp: Tue Feb 15 2011 04:04:07 EST
../../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
12   57   11   1.2
2   44   0.92   10
10     1.1  
1    
 
  MockProposal       Line # 7 12 0% 11 2 91.7% 0.9166667
 
  (1)
 
1    package org.kuali.student.core.assembly.data;
2   
3    import java.util.HashMap;
4    import java.util.List;
5    import java.util.Map;
6   
 
7    public class MockProposal {
8    private String id;
9    private List<String> orgId;
10    private String proposalTitle;
11    private String proposalRationale;
12    private Map<String, String> attributes;
13   
 
14  1 toggle public String getId() {
15  1 return id;
16    }
17   
 
18  1 toggle public void setId(String id) {
19  1 this.id = id;
20    }
21   
 
22  1 toggle public List<String> getOrgId() {
23  1 return orgId;
24    }
25   
 
26  1 toggle public void setOrgId(List<String> orgId) {
27  1 this.orgId = orgId;
28    }
29   
 
30  1 toggle public String getProposalTitle() {
31  1 return proposalTitle;
32    }
33   
 
34  1 toggle public void setProposalTitle(String proposalTitle) {
35  1 this.proposalTitle = proposalTitle;
36    }
37   
 
38  1 toggle public String getProposalRationale() {
39  1 return proposalRationale;
40    }
41   
 
42  1 toggle public void setProposalRationale(String proposalRationale) {
43  1 this.proposalRationale = proposalRationale;
44    }
45   
 
46  2 toggle public Map<String, String> getAttributes() {
47  2 if (attributes == null){
48  1 attributes = new HashMap<String,String>();
49    }
50  2 return attributes;
51    }
52   
 
53  0 toggle public void setAttributes(Map<String, String> attributes) {
54  0 this.attributes = attributes;
55    }
56   
57    }