01: /*
02: * Copyright 2006 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.opensource.org/licenses/ecl1.php
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package org.kuali.core.datadictionary.control;
18:
19: import org.apache.commons.logging.Log;
20: import org.apache.commons.logging.LogFactory;
21:
22: /**
23: * A single HTML text control.
24: *
25: *
26: */
27: public class CurrencyControlDefinition extends ControlDefinitionBase {
28: // logger
29: private static Log LOG = LogFactory
30: .getLog(CurrencyControlDefinition.class);
31: /**
32: * the maxLength for text that has been formatted. ie if maxLength=5. [12345]. but after going through the formatter the value
33: * is [12,345.00] and will no longer fit in a field whos maxLength=5. formattedMaxLength solves this problem.
34: */
35: private Integer formattedMaxLength;
36:
37: public CurrencyControlDefinition() {
38: LOG.debug("creating new CurrencyControlDefinition");
39: }
40:
41: /**
42: *
43: * @see org.kuali.core.datadictionary.control.ControlDefinition#isCurrency()
44: */
45: public boolean isCurrency() {
46: return true;
47: }
48:
49: /**
50: * @see java.lang.Object#toString()
51: */
52: public String toString() {
53: return "CurrencyControlDefinition";
54: }
55:
56: /**
57: * @return Returns the formattedMaxLength parameter for currency controls.
58: */
59: public Integer getFormattedMaxLength() {
60: return formattedMaxLength;
61: }
62:
63: /**
64: * Sets the formattedMaxLength parameter for currency controls.
65: *
66: * @param formattedMaxLength.
67: */
68: public void setFormattedMaxLength(Integer formattedMaxLength) {
69: LOG.debug("calling setFormattedMaxLength '"
70: + formattedMaxLength + "'");
71: this.formattedMaxLength = formattedMaxLength;
72: }
73:
74: }
|