Tagged Questions
The gen-class tag has no wiki summary.
5
votes
0answers
66 views
clojure gen-class varargs constructor
in the :constructors map and subsequent -init definitions, how do I represent a varargs constructor (assuming the superclass has multiple constructors of which one is varargs) ?
2
votes
2answers
314 views
Clojure's :gen-class and double arrays
I am attempting to :gen-class a fn which takes a 2D array of Doubles as input. I have already seen the post and solution here concerning a similar topic, but I am still unable to produce a working ...
2
votes
1answer
472 views
Problem Extending A Class in Clojure: ClassFormatError: Duplicate field name&signature
I'm trying to extend JButton with Clojure, but I ran into a problem when I try to create my own constructors. Whenever I use :constructors with :gen-class I keep getting a "ClassFormatError: Duplicate ...
2
votes
2answers
291 views
Trouble understanding :state in Clojure
I understand what :state /does/. It creates a field, like in Java, in your class. What I don't understand is what is the point of this? It seems like I only see it done with Clojure-generated classes ...
1
vote
1answer
104 views
Attaching metadata to a Clojure gen-class
Is it possible to attach metadata to a Clojure gen-class?
I am trying to implement a server that uses a library that requires Java annotations added to classes.
From Chas Emerick's, et al., ...