I've found myself a few times in a situation where I'm banging some java code into clojure, and the java source uses import foo.* blah.* bar.* Now Clojure requires explicit class naming (which I fully support) so I end up spending a good slice of time googling "java SomeWierdClass someapi" to get all the import names, recompile, find next one, google, update... its a very slow cycle. How do other people do this?
That's pretty much how I do it, though I don't really use the compiler to prompt me -- I try to get it right the first time. I spend a lot of time looking at Javadocs, replicating work that Eclipse would do for me.
jar tf somelib.jar will produce a nice list of classes... -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en