Here are some more comments, maybe it helps. Paul Smith wrote: > [Mark Womack wrote:] > > One more question...the package explorer is showing me all of the packages > > in the project, but most of them have compile errors associated with the > > Eclipse attempt to build the project (which I still don't want to use). Is > > there any way to get it to not display all the error garbage?
In my configuration, only a few (5) packages showed errors (with empty classpath). Make sure your source path is set to 'src/java', not to 'src' only (which is Eclipses default 'guess'). Otherwise Eclipse gets confused about the package names. > Three ways around this: > > * Modify your project definition to include all the libraries > required.. Then eclipse will compile it all, with no errors... :) It took me 10 min. to download all required jars. This is probably much less effort than trying to force Eclipse to work in another style, especially as you need to do this only once. > * Don't include the java source tree as a source path, then it won't > bother compiling it. You will then need to use the Find Resource method > to find java files, because then the Open Type dialog won't have any > Java source files to search from Not recommended, because you lose all the nice Java features, especially the refactoring capabilities. > * [I use this] Ignore the errors in Eclipse. You can still find the > classes using Open Type, but you still get the errors. If you want to go this way, you can disable most of the error annotations. All relevant options are on the 'Window->Preferences, Java->Editor, Annotations' page. Of course, you can also just close the 'Problems' window if you don't like it. Then the errors are shown 'only' in the package tree and in the left-hand ruler of the editor. > BTW, if you're not running Eclipse 3.0 M4, I highly recommend going to it. I second this. --Wolf --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]