Clover Coverage Report - KS Common Api 1.2-M2-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
2   24   2   1
0   15   1   2
2     1  
1    
 
  BaseConstraint       Line # 9 2 0% 2 4 0% 0.0
 
No Tests
 
1    package org.kuali.student.common.dictionary.dto;
2   
3    import javax.xml.bind.annotation.XmlAccessType;
4    import javax.xml.bind.annotation.XmlAccessorType;
5    import javax.xml.bind.annotation.XmlElement;
6   
7   
8    @XmlAccessorType(XmlAccessType.FIELD)
 
9    public class BaseConstraint {
10    @XmlElement
11    protected String labelKey; // Label key will map to a message... for a field
12    // there can be multiple contexts for the
13    // label... a help context, a description
14    // context, and a field label context for
15    // example
16   
 
17  0 toggle public String getLabelKey() {
18  0 return labelKey;
19    }
20   
 
21  0 toggle public void setLabelKey(String labelKey) {
22  0 this.labelKey = labelKey;
23    }
24    }