|
From: Joachim B. <jb...@us...> - 2007-02-18 13:43:19
|
Update of /cvsroot/swixat/swixat/src/main/java/org/swixat/databinding In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv16784/src/main/java/org/swixat/databinding Modified Files: Tag: B0_6_0 SetterFactory.java Log Message: jdk1.6 issue fixed Index: SetterFactory.java =================================================================== RCS file: /cvsroot/swixat/swixat/src/main/java/org/swixat/databinding/SetterFactory.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** SetterFactory.java 2 Oct 2006 21:48:35 -0000 1.4 --- SetterFactory.java 18 Feb 2007 13:42:39 -0000 1.4.2.1 *************** *** 2,5 **** --- 2,6 ---- import java.util.HashMap; + import java.util.Map; *************** *** 10,14 **** */ public class SetterFactory { ! private HashMap propertySetters; public SetterFactory() { --- 11,15 ---- */ public class SetterFactory { ! private Map propertySetters; public SetterFactory() { *************** *** 83,87 **** * @return Value of property propertySetters. */ ! public HashMap getPropertySetters() { return propertySetters; } --- 84,88 ---- * @return Value of property propertySetters. */ ! public Map getPropertySetters() { return propertySetters; } *************** *** 92,96 **** * @param propertySetters New value of property propertySetters. */ ! public void setPropertySetters(HashMap propertySetters) { this.propertySetters.putAll(propertySetters); } --- 93,97 ---- * @param propertySetters New value of property propertySetters. */ ! public void setPropertySetters(Map propertySetters) { this.propertySetters.putAll(propertySetters); } |