On Sun, Mar 1, 2009 at 11:25 AM, Kearsley Schieder-Wethy <[email protected]> wrote: > > However, I'll freely admit that I'm a Java newbie. I get the basic > gist of the language, but find myself stalling when it comes to > finding methods and fields on an object. One thing that I found > myself missing, deeply, was an equivalent to Python's "dir" function, > but for Java objects.
I have felt similarly. You may be interested in clojure.contrib.javadoc and clojure.contrib.repl-utils. Together they allow you to view Java class docs, method and field lists, source code for Clojure defn's, etc. all from the REPL. I also saw functionality in your posted code that's similar to other functions found in clojure-contrib. You may want to poke around and see if any of it looks useful to you: http://code.google.com/p/clojure-contrib/source/browse/trunk/src/clojure/contrib/ --Chouser --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---
