Re: Possible Reflector Bug

2008-12-02 Thread JMan
n Sat, Nov 29, 2008 at 6:17 PM, JMan <[EMAIL PROTECTED]> wrote: > > > Consider these 2 interfaces: > > > - PackagePrivateInterface.java > > > package test; > > > interface PackagePrivateInterface { > >    public void myPublicMethod(); > > } &

Interactive Charting with Clojure & the Google Chart API

2008-12-02 Thread JMan
I thought this may interest this group: I created a little interactive charting environment for Clojure which you can find here: http://code.google.com/p/charts4j/downloads/list. Simply load it with the following command: (load-file "charting.clj"), setting your path appropriately, of course. Yo

error in java interop documentation

2008-11-22 Thread JMan
If you look here: http://clojure.org/java_interop you will see the following example: (doto (new java.util.HashMap) (.put "a" 1) (.put "b" 2)) This produces the following error: java.lang.IllegalArgumentException: No matching method found: .put I believe the correct code is: (doto (new java

Possible Reflector Bug

2008-11-29 Thread JMan
Consider these 2 interfaces: - PackagePrivateInterface.java package test; interface PackagePrivateInterface { public void myPublicMethod(); } - PublicTagInterface.java package test; public interface PublicTagInterface extends PackagePrivateInterface { } And these 2 classes: - Factory.j