Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
BaseConstraint |
|
| 1.0;1 |
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 | 0 | 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 | public String getLabelKey() { | |
18 | 0 | return labelKey; |
19 | } | |
20 | ||
21 | public void setLabelKey(String labelKey) { | |
22 | 0 | this.labelKey = labelKey; |
23 | 0 | } |
24 | } |