[From nobody Fri Aug 6 17:05:26 2004 X-Mozilla-Status2: 00000000 Message-ID: <3A3E8496.A064A4A2@collab.net> Date: Mon, 18 Dec 2000 13:41:42 -0800 From: Jason Hunter <jhunter@collab.net> X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Kishma Tummala <tkishma@hotmail.com> CC: jdom-interest@jdom.org Subject: Re: [jdom-interest] XML and Data Binding. References: <OE6583mxMAKyttoRaD60000084e@hotmail.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit > C:\org\enhydra\xml\binding>javac *.java SchemaMapper.java:83: > incompatible types found : com.sun.java.util.collections.List > required: java.util.List .getChildren("complexType", ^ You're mixing JDK 1.2 and JDK 1.1 collections. If you're using JDK 1.2, then build as normal and don't include collections.jar in your path. If you're using JDK 1.1 then build with build11.* and do include collections.jar in your path. -jh- ]