Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
204 views

Add constructor to deftype created class

For the purposes of interoperability with Java, I need a class that has a nullary constructor that performs initialization. Objects of this class need to have something resembling mutable java fields ...
8
votes
3answers
635 views

Does Clojure have an equivalent of Java's import package.*?

Or do I have to specifically enumerate every class that I import? I'm just learning Clojure now, and it seems useful to be able to do something like this in the REPL: (import '(java.io *)) Not ...
6
votes
1answer
504 views

How can I define a clojure type that implements the servlet interface?

I'm attempting to use deftype (from the bleeding-edge clojure 1.2 branch) to create a java class that implements the java Servlet interface. I would expect the code below to compile (even though it's ...
5
votes
0answers
69 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) ?
4
votes
1answer
224 views

How do you refer to primitive Java types in Clojure?

I'd like to use reflection to get a method of a Java object from Clojure. One of the argument types is a Java primitive and I don't know how to refer to them from Clojure. For example, say I wanted ...
4
votes
3answers
492 views

How do I pull `static final` constants from a Java class into a Clojure namespace?

I am trying to wrap a Java library with a Clojure binding. One particular class in the Java library defines a bunch of static final constants, for example: class Foo { public static final int ...
2
votes
1answer
365 views

Calling Java from Scala: protected constructor

This compiles without error on Scala 2.8.0 final: import javax.swing.tree.TreePath object A extends Application { val path1 = new TreePath() val path2 = new TreePath(path1, "foo") } However, ...
2
votes
2answers
319 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
2answers
293 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
189 views

Having trouble calling getCodeBase in Clojure

I'm trying to write a function to play a sound file once, using some resources I found. The code is as follows: (defn play [file] (let [songp (URL. (.getCodeBase) file) song (.newAudioClip ...
1
vote
2answers
756 views

When you extend a Java class in Clojure and define a method of the same name as one in that class, what is happening?

I've been reading through Programming Clojure, and I've been having some trouble understanding Stuarts primary Java Interop example. He extends DefaultHandler, and creates a startElement method, and ...
0
votes
1answer
33 views

Can I use Java Core libraries in Ceylon M1 Newton?

I've downloaded the Ceylon SDK and try to play a little bit, but after a while I realize of this: ... SDK At this time, the only module available is the language module ceylon.language, ...
0
votes
3answers
113 views

Clojure adding a border to a JPanel and in general accessing java methods in objects

Coming from LISP I am having my most challenging moments when accessing java objects. I am trying to put a titled border on a JPanel. Here is my code and exception: user=> (import '(javax.swing ...
0
votes
1answer
43 views

clojure — name conflicts in a defined record?

I have a misbehaving piece of code; when I name a record MethodInfo, it no longer overrides the .toString method correctly. (defrecord MethodInfo [^clojure.lang.ISeq x ^clojure.lang.ISeq y] ...
0
votes
2answers
60 views

Can JNBridge be used under linux?

I have to consume some C# dll's under a linux host through java. Rewriting the code is currently not an option, and we can't expose the dll as a service because this linux server will exist in ...
0
votes
1answer
265 views

MPXJ in .NET converting java Date to .NET DateTime

I'm using the MPXJ library in .NET for parsing MS Project (MPP) files, and it's working great. The one issue I'm having is trying to translate the task Start and Finish date into .NET DateTime to use ...