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();
> > }
&
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
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
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