The genclass documentation says, "Static methods can be specified with
#^{:static true} in the signature's metadata." I thought that would
mean this:
(ns tango.test.unit.StaticTest
(:gen-class
:methods [[f [] #^{:static true} void ]]))
(defn -init [_] ())
(defn -f [] (println "hello world!"))
But that doesn't seem to do the trick:
~/projects/junit-clojure$ javap -classpath /home/bsmith/software/
clojure/trunk/clojure.jar:/home/bsmith/software/junit-4.4/
junit-4.4.jar:$PWD:$PWD/classes tango.test.unit.StaticTest
public class tango.test.unit.StaticTest extends java.lang.Object{
public static {};
public tango.test.unit.StaticTest();
public java.lang.String toString();
public boolean equals(java.lang.Object);
public java.lang.Object clone();
public int hashCode();
public void f();
public static void main(java.lang.String[]);
}
I'm using Clojure rev 1327.
Bill Smith
Austin, Texas
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---