Re: [collections] Composable Map?

2009-08-12 Thread Ralph Goers
Is there something wrong with using java.util.Properties? Just do Properties defaults = new Properties(); . . Properties map = new Properties(defaults); Ralph On Aug 11, 2009, at 7:01 PM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 All, I have a need for the

Re: [collections] Composable Map?

2009-08-12 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ralph, On 8/12/2009 2:43 AM, Ralph Goers wrote: Is there something wrong with using java.util.Properties? Just do Properties defaults = new Properties(); . . Properties map = new Properties(defaults); This is definitely possible, but

Does commons-configuration v1.6 work with JREv1.5? [Commons]

2009-08-12 Thread Andrew Hughes
Hi, simple question I know... but, I'm lost!!! My JavaFX project won't recognize *org.apache.commons.configuration.**. JavaFX v1.2's SDK seems to have inherent problems with Java6, because the SDK is released with rt15.jar (Java 1.5 runtime)! If the answer is yes because configuration 1.6 has a

Re: Does commons-configuration v1.6 work with JREv1.5? [Commons]

2009-08-12 Thread James Carman
It's not compiled with target=1.6. If you look at the manifest, it uses the same target as commons-parent-11, 1.3: X-Compile-Source-JDK: 1.3 X-Compile-Target-JDK: 1.3 It was compiled with a 1.4 Sun JDK: Created-By: 1.4.2_18 (Sun Microsystems Inc.) Build-Jdk: 1.4.2_18 So, it should be 1.5

Re: Does commons-configuration v1.6 work with JREv1.5? [Commons]

2009-08-12 Thread Andrew Hughes
Gotcha!!! Thank You. JavaFX refuses to read the jar All other common's jars work just fine :'( On Thu, Aug 13, 2009 at 10:36 AM, James Carman ja...@carmanconsulting.comwrote: It's not compiled with target=1.6. If you look at the manifest, it uses the same target as commons-parent-11, 1.3: