|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ValidCharsConstraint | Line # 36 | 6 | 0% | 6 | 6 | 50% |
0.5
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
(8) | |||
Result | |||
0.5
|
org.kuali.student.common.validator.old.ValidatorTest.testMaxLength org.kuali.student.common.validator.old.ValidatorTest.testMaxLength | 1 PASS | |
0.5
|
org.kuali.student.common.validator.old.ValidatorTest.testMinLength org.kuali.student.common.validator.old.ValidatorTest.testMinLength | 1 PASS | |
0.5
|
org.kuali.student.common.validator.old.ValidatorTest.testRequired org.kuali.student.common.validator.old.ValidatorTest.testRequired | 1 PASS | |
0.5
|
org.kuali.student.common.validator.old.ValidatorTest.testDoubleValueRange org.kuali.student.common.validator.old.ValidatorTest.testDoubleValueRange | 1 PASS | |
0.5
|
org.kuali.student.common.validator.old.ValidatorTest.testValidChars org.kuali.student.common.validator.old.ValidatorTest.testValidChars | 1 PASS | |
0.5
|
org.kuali.student.common.validator.old.ValidatorTest.testLengthRange org.kuali.student.common.validator.old.ValidatorTest.testLengthRange | 1 PASS | |
0.5
|
org.kuali.student.common.validator.old.ValidatorTest.testNestedStructures org.kuali.student.common.validator.old.ValidatorTest.testNestedStructures | 1 PASS | |
0.5
|
org.kuali.student.common.validator.old.ValidatorTest.testMinDateValue org.kuali.student.common.validator.old.ValidatorTest.testMinDateValue | 1 PASS | |
1 | /** | |
2 | * Copyright 2010 The Kuali Foundation Licensed under the | |
3 | * Educational Community License, Version 2.0 (the "License"); you may | |
4 | * not use this file except in compliance with the License. You may | |
5 | * obtain a copy of the License at | |
6 | * | |
7 | * http://www.osedu.org/licenses/ECL-2.0 | |
8 | * | |
9 | * Unless required by applicable law or agreed to in writing, | |
10 | * software distributed under the License is distributed on an "AS IS" | |
11 | * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | |
12 | * or implied. See the License for the specific language governing | |
13 | * permissions and limitations under the License. | |
14 | */ | |
15 | ||
16 | // | |
17 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.0 in JDK 1.6 | |
18 | // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> | |
19 | // Any modifications to this file will be lost upon recompilation of the source schema. | |
20 | // Generated on: 2008.10.21 at 02:14:18 PM PDT | |
21 | // | |
22 | ||
23 | ||
24 | package org.kuali.student.common.dictionary.old.dto; | |
25 | ||
26 | import java.io.Serializable; | |
27 | ||
28 | import javax.xml.bind.annotation.XmlAccessType; | |
29 | import javax.xml.bind.annotation.XmlAccessorType; | |
30 | import javax.xml.bind.annotation.XmlAttribute; | |
31 | import javax.xml.bind.annotation.XmlElement; | |
32 | ||
33 | ||
34 | ||
35 | @XmlAccessorType(XmlAccessType.FIELD) | |
36 | public class ValidCharsConstraint implements Serializable{ | |
37 | ||
38 | private static final long serialVersionUID = 1L; | |
39 | ||
40 | @XmlAttribute | |
41 | protected String fields; | |
42 | ||
43 | @XmlAttribute | |
44 | protected String separator; | |
45 | ||
46 | @XmlElement | |
47 | protected String value; | |
48 | ||
49 | /** | |
50 | * @return the fields | |
51 | */ | |
52 | 9 | public String getFields() { |
53 | 9 | return fields; |
54 | } | |
55 | ||
56 | /** | |
57 | * @param fields the fields to set | |
58 | */ | |
59 | 0 | public void setFields(String fields) { |
60 | 0 | this.fields = fields; |
61 | } | |
62 | ||
63 | /** | |
64 | * @return the separator | |
65 | */ | |
66 | 0 | public String getSeparator() { |
67 | 0 | return separator; |
68 | } | |
69 | ||
70 | /** | |
71 | * @param separator the separator to set | |
72 | */ | |
73 | 0 | public void setSeparator(String separator) { |
74 | 0 | this.separator = separator; |
75 | } | |
76 | ||
77 | /** | |
78 | * @return the value | |
79 | */ | |
80 | 9 | public String getValue() { |
81 | 9 | return value; |
82 | } | |
83 | ||
84 | /** | |
85 | * @param value the value to set | |
86 | */ | |
87 | 166 | public void setValue(String value) { |
88 | 166 | this.value = value; |
89 | } | |
90 | } |
|