Re: Problem with gen-class

2009-07-28 Thread Laurent PETIT
Ouch, indeed ! 2009/7/28 Meikel Brandmeyer > > Hi, > > On Jul 28, 1:32 pm, Laurent PETIT wrote: > > > The following: > > :constructors [[] []] > > Hmm... shouldn't this be a map? > > :constructors {[] []} > > Sincerely > Meikel > > > > --~--~-~--~~~---~--~~ You

Re: Problem with gen-class

2009-07-28 Thread Meikel Brandmeyer
Hi, On Jul 28, 1:32 pm, Laurent PETIT wrote: > The following: > :constructors [[] []] Hmm... shouldn't this be a map? :constructors {[] []} Sincerely Meikel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cloju

Re: Problem with gen-class

2009-07-28 Thread Laurent PETIT
No, it was :constructors [[] []] which caused the default constructor to be declared twice 2009/7/28 John Harrop > On Tue, Jul 28, 2009 at 1:47 AM, Laurent PETIT wrote: > >> Do you know what could cause this "repetitive method name/signature in >> class" ? > > > >>:exposes-methods {addPages

Re: Problem with gen-class

2009-07-28 Thread John Harrop
On Tue, Jul 28, 2009 at 1:47 AM, Laurent PETIT wrote: > Do you know what could cause this "repetitive method name/signature in > class" ? >:exposes-methods {addPages super-addPages})) > Is it possible that exposing both addPages and the superclass addPages causes this? Try it without super

Re: Problem with gen-class

2009-07-28 Thread Laurent PETIT
Thanks to Christophe who pointed me to the javap utility, I was able to see which method was problematic. In fact it was the constructor. The following: :constructors [[] []] in the following gen-class call: (:gen-class :name classpath.issue.GranuleImportWizardImpl :extendsorg.ecl

Re: Problem with gen-class

2009-07-28 Thread Laurent PETIT
I will, but in private ? 2009/7/28 Christophe Grand > Hi Laurent, > > Could you provide the faulty class file? > > On Tue, Jul 28, 2009 at 7:47 AM, Laurent PETIT wrote: > >> Hello, >> >> I'm trying to make clojure and Eclipse play well together for writing >> Eclipse plugins. >> >> I have played

Re: Problem with gen-class

2009-07-28 Thread Christophe Grand
Hi Laurent, Could you provide the faulty class file? On Tue, Jul 28, 2009 at 7:47 AM, Laurent PETIT wrote: > Hello, > > I'm trying to make clojure and Eclipse play well together for writing > Eclipse plugins. > > I have played with (proxy) but I encountered classloader problems that are > curren