GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / web / org / codehaus / groovy / grails / web / binding / CurrencyEditor.java
blobcd17f9dc8f884135ff2f3101c6dc01a8fef3aa65
1 /* Copyright 2004-2005 the original author or authors.
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
15 package org.codehaus.groovy.grails.web.binding;
17 import org.apache.commons.lang.StringUtils;
19 import java.beans.PropertyEditorSupport;
20 import java.util.Currency;
22 /**
23 * A Property editor for converting instances of java.util.Currency
25 * @author Graeme Rocher
26 * @since 14-Feb-2006
28 public class CurrencyEditor extends PropertyEditorSupport {
29 public void setAsText(String text) throws IllegalArgumentException {
30 if(StringUtils.isBlank(text)) {
31 setValue(null);
33 try {
34 setValue(Currency.getInstance(text));
35 } catch (IllegalArgumentException e) {
36 // ignore and just set to null
37 setValue(null);
41 public String getAsText() {
42 Currency c = (Currency)getValue();
43 if(c == null) {
44 return "";
46 else {
47 return c.getCurrencyCode();