Christophe, you're right. I tried it and that method also works. I
didn't know about that secret feature.

(ns expmeth.TestMe
  (:gen-class
   :extends expmeth.ClassA
   :exposes-methods {hello helloSuper}))

(defn -hello [this]
     (.helloSuper this)
     (println "hello from clojure!"))

(defn -hello-String [this x]
  (.helloSuper this x)
  (println "hello-String from clojure" x))

(defn -hello-int [this x]
  (.helloSuper this x)
  (println "hello-int from clojure..." x))


--~--~---------~--~----~------------~-------~--~----~
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
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to