Clover Coverage Report - KS Common 1.2-M4-SNAPSHOT (Aggregated)
Coverage timestamp: Wed Jul 20 2011 12:23:34 EDT
../../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
2   29   2   1
0   14   1   2
2     1  
1    
 
  ValidCharsConstraint       Line # 8 2 0% 2 0 100% 1.0
 
  (13)
 
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    @XmlAccessorType(XmlAccessType.FIELD)
 
8    public class ValidCharsConstraint extends BaseConstraint {
9   
10    // TODO: Should this be a list of values
11    @XmlElement
12    protected String value; // (regex or list of valid chars)
13   
14    /**
15    * @return the value
16    */
 
17  46 toggle public String getValue() {
18  46 return value;
19    }
20   
21    /**
22    * @param value the value to set
23    */
 
24  39 toggle public void setValue(String value) {
25  39 this.value = value;
26    }
27   
28   
29    }