I think the problem is that you are try to use a static method lake an
instance method. I was able to get the following to work:
(import javax.swing.JColorChooser)
(JColorChooser/showDialog nil "Test" java.awt.Color/BLACK)
Sean
On Mar 22, 4:51 pm, WoodHacker wrote:
> When
`showDialog` is a static method. Maybe something like below would work?
(JColorChooser/showDialog parent "Choose Color" bisque)
Allen
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@g
When I try to use JColorChooser in Clojure I get the followinf error:
Exception in thread "AWT-EventQueue-0"
java.lang.IllegalArgumentException: No matching method found:
showDialog for class javax.swing.JColorChooser
Shouldn't showDioalog be there? What and I doing wrong.