You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by js...@apache.org on 2006/08/25 15:53:39 UTC

svn commit: r436792 - in /geronimo/xbean/trunk/xbean-spring-common/src/main/java/org/apache/xbean/spring/context/impl: DateEditor.java PropertyEditorHelper.java

Author: jstrachan
Date: Fri Aug 25 06:53:37 2006
New Revision: 436792

URL: http://svn.apache.org/viewvc?rev=436792&view=rev
Log:
added String -> Date converter so that xbean POJOs can be configured with Date properties and to avoid cast exceptions to fix XBEAN-46

Added:
    geronimo/xbean/trunk/xbean-spring-common/src/main/java/org/apache/xbean/spring/context/impl/DateEditor.java   (with props)
Modified:
    geronimo/xbean/trunk/xbean-spring-common/src/main/java/org/apache/xbean/spring/context/impl/PropertyEditorHelper.java

Added: geronimo/xbean/trunk/xbean-spring-common/src/main/java/org/apache/xbean/spring/context/impl/DateEditor.java
URL: http://svn.apache.org/viewvc/geronimo/xbean/trunk/xbean-spring-common/src/main/java/org/apache/xbean/spring/context/impl/DateEditor.java?rev=436792&view=auto
==============================================================================
--- geronimo/xbean/trunk/xbean-spring-common/src/main/java/org/apache/xbean/spring/context/impl/DateEditor.java (added)
+++ geronimo/xbean/trunk/xbean-spring-common/src/main/java/org/apache/xbean/spring/context/impl/DateEditor.java Fri Aug 25 06:53:37 2006
@@ -0,0 +1,46 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.xbean.spring.context.impl;
+
+import java.beans.PropertyEditorSupport;
+import java.text.DateFormat;
+import java.text.ParseException;
+import java.util.Date;
+
+/**
+ * Editor for <code>java.util.Date</code>
+ */
+public class DateEditor extends PropertyEditorSupport {
+
+    private DateFormat dateFormat = DateFormat.getInstance();
+    
+	public void setAsText(String text) throws IllegalArgumentException {
+		try {
+            setValue(dateFormat.parse(text));
+		}
+        catch (ParseException e) {
+            throw new IllegalArgumentException(
+                    "Could not convert Date for " + text + ": " + e.getMessage());
+        }
+	}
+
+	public String getAsText() {
+        Date value = (Date) getValue();
+		return (value != null ? dateFormat.format(value) : "");
+	}
+
+}

Propchange: geronimo/xbean/trunk/xbean-spring-common/src/main/java/org/apache/xbean/spring/context/impl/DateEditor.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/xbean/trunk/xbean-spring-common/src/main/java/org/apache/xbean/spring/context/impl/DateEditor.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: geronimo/xbean/trunk/xbean-spring-common/src/main/java/org/apache/xbean/spring/context/impl/PropertyEditorHelper.java
URL: http://svn.apache.org/viewvc/geronimo/xbean/trunk/xbean-spring-common/src/main/java/org/apache/xbean/spring/context/impl/PropertyEditorHelper.java?rev=436792&r1=436791&r2=436792&view=diff
==============================================================================
--- geronimo/xbean/trunk/xbean-spring-common/src/main/java/org/apache/xbean/spring/context/impl/PropertyEditorHelper.java (original)
+++ geronimo/xbean/trunk/xbean-spring-common/src/main/java/org/apache/xbean/spring/context/impl/PropertyEditorHelper.java Fri Aug 25 06:53:37 2006
@@ -32,6 +32,7 @@
     public static void registerCustomEditors() {
         registerEditor("java.io.File", "org.apache.xbean.spring.context.impl.FileEditor");
         registerEditor("java.net.URI", "org.apache.xbean.spring.context.impl.URIEditor");
+        registerEditor("java.util.Date", "org.apache.xbean.spring.context.impl.DateEditor");
         registerEditor("javax.management.ObjectName", "org.apache.xbean.spring.context.impl.ObjectNameEditor");
     }