Clover Coverage Report - KS Common Api 1.2
Coverage timestamp: Thu Jan 1 1970 00:00:00 UTC
../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
2   29   2   1
0   14   1   2
2     1  
1    
 
  ValidCharsConstraint       Line # 8 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    @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  0 toggle public String getValue() {
18  0 return value;
19    }
20   
21    /**
22    * @param value the value to set
23    */
 
24  0 toggle public void setValue(String value) {
25  0 this.value = value;
26    }
27   
28   
29    }