Revision: 1325
Author:   mathiasbr
Date:     2006-08-20 15:17:43 -0700 (Sun, 20 Aug 2006)
ViewCVS:  http://svn.sourceforge.net/spring-rich-c/?rev=1325&view=rev

Log Message:
-----------
support for EventList to ListModel conversions

Added Paths:
-----------
    
trunk/spring-richclient/support/src/main/java/org/springframework/richclient/convert/support/GlazedListModelConverter.java
Added: 
trunk/spring-richclient/support/src/main/java/org/springframework/richclient/convert/support/GlazedListModelConverter.java
===================================================================
--- 
trunk/spring-richclient/support/src/main/java/org/springframework/richclient/convert/support/GlazedListModelConverter.java
                          (rev 0)
+++ 
trunk/spring-richclient/support/src/main/java/org/springframework/richclient/convert/support/GlazedListModelConverter.java
  2006-08-20 22:17:43 UTC (rev 1325)
@@ -0,0 +1,48 @@
+/*
+ * Copyright 2002-2006 the original author or authors.
+ *
+ * Licensed 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.springframework.richclient.convert.support;
+
+import javax.swing.ListModel;
+
+import org.springframework.binding.convert.support.AbstractConverter;
+
+import ca.odell.glazedlists.EventList;
+import ca.odell.glazedlists.swing.EventListModel;
+
+/**
+ * supports converting [EMAIL PROTECTED] EventList}s to [EMAIL PROTECTED] 
ListModel}
+ * 
+ * @author Mathias Broekelmann
+ *
+ */
+public class GlazedListModelConverter extends AbstractConverter {
+
+    private static final Class[] TARGET_CLASSES = new Class[] 
{ListModel.class};
+    private static final Class[] SOURCE_CLASSES = new Class[] 
{EventList.class};
+
+    protected Object doConvert(Object source, Class targetClass) throws 
Exception {
+        return new EventListModel((EventList) source);
+    }
+
+    public Class[] getSourceClasses() {
+        return SOURCE_CLASSES;
+    }
+
+    public Class[] getTargetClasses() {
+        return TARGET_CLASSES;
+    }
+
+}


Property changes on: 
trunk/spring-richclient/support/src/main/java/org/springframework/richclient/convert/support/GlazedListModelConverter.java
___________________________________________________________________
Name: svn:keywords
   + Revision Author Date Id
Name: svn:eol-style
   + native


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
spring-rich-c-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/spring-rich-c-cvs

Reply via email to