Re: java.util.HashMap to com.sun.java.util.collections.HashMap

2002-03-07 Thread Nicola Ken Barozzi
From: David B. Bitton [EMAIL PROTECTED] Has it come up where anyone has attempted to use FOP w/ JDK 1.1. The is no HashMap class. Sun has made available the collections classes for use in 1.1. This requires changing every import of java.util.HashMap to

Re: java.util.HashMap to com.sun.java.util.collections.HashMap

2002-03-07 Thread David B. Bitton
PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 07, 2002 12:08 PM Subject: Re: java.util.HashMap to com.sun.java.util.collections.HashMap From: David B. Bitton [EMAIL PROTECTED] Has it come up where anyone has attempted to use FOP w/ JDK 1.1. The is no HashMap class. Sun has made

RE: java.util.HashMap to com.sun.java.util.collections.HashMap

2002-03-07 Thread Art Welch
Prior versions of FOP used to support JDK 1.1 (with reduced functionality). However some time back, JDK 1.1 support was dropped. I have not looked at this in a while, but I suspect that HashMap may be the least of the problems. I suspect that supporting JDK 1.1 with the current FOP would require

Re: java.util.HashMap to com.sun.java.util.collections.HashMap

2002-03-07 Thread David B. Bitton
: java.util.HashMap to com.sun.java.util.collections.HashMap Prior versions of FOP used to support JDK 1.1 (with reduced functionality). However some time back, JDK 1.1 support was dropped. I have not looked at this in a while, but I suspect that HashMap may be the least of the problems. I suspect

Re: java.util.HashMap to com.sun.java.util.collections.HashMap

2002-03-07 Thread Keiron Liddle
This class will not compile with jdk1.4 The api has changed with a new class so it is not possible to make it compile with jdk1.4 AND jdk1.2 or jdk1.3 The method you need is in that class, simply uncomment it. On 2002.03.07 18:38 David B. Bitton wrote: There are number of ways to make Java