> > import javax.sound.sampled.*; > > ... > > Line.Info li = new Line.Info(Object.class); > > My two (wrong) trials are: > > (def li (new javax.sound.sampled.Line/Info (.getClass (Object.)))) ; gives Unable to resolve classname: javax.sound.sampled.Line/Info ; [Thrown class java.lang.IllegalArgumentException] > > (def li (new javax.sound.sampled.Line.Info (.getClass (Object.)))) ; javax.sound.sampled.Line.Info ; [Thrown class java.lang.ClassNotFoundException] > > Does anybody see what I'm doing wrong here?
Info is an inner class? I'm guessing you'll want javax.sound.sampled/Line$Info Hope that helps, Kevin Kelley -- 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 Note that posts from new members are moderated - please be patient with your first post. 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 To unsubscribe, reply using "remove me" as the subject.