Re: [cp-patches] Patch: RFC: javax.sound.sampled

2005-11-13 Thread Meskauskas Audrius
+1 Audrius. ___ Classpath-patches mailing list Classpath-patches@gnu.org http://lists.gnu.org/mailman/listinfo/classpath-patches

Re: [cp-patches] Patch: API docs for javax/print/attribute Interfaces and Exception

2005-11-13 Thread Wolfgang Baer
Mark Wielaard wrote: Hi Wolfgang, On Sat, 2005-11-12 at 20:39 +0100, Wolfgang Baer wrote: this adds documentation to the interfaces and one exception in javax.print.attribute. 2005-11-12 Wolfgang Baer [EMAIL PROTECTED] * javax/print/attribute/Attribute.java,

Re: [cp-patches] Patch: RFC: javax.sound.sampled

2005-11-13 Thread Michael Koch
On Sat, Nov 12, 2005 at 05:51:55PM -0700, Tom Tromey wrote: I'm not checking this in yet. I haven't really done much testing of it, and I wanted some feedback first as well. This implements javax.sound.sampled and javax.sound.sampled.spi. I would say: Please commit. Bugs can be fixed later.

[cp-patches] FYI: CORBA 1.5 API fixes

2005-11-13 Thread Meskauskas Audrius
This adds several missing 1.5 methods. 2005-11-13 Audrius Meskauskas [EMAIL PROTECTED] * gnu/CORBA/Interceptor/gnuIorInfo.java (state): Made public. * gnu/CORBA/Interceptor/gnuServerRequestInfo.java (adapter_name, orb_id, server_id): New methods. *

Re: [cp-patches] Patch: javax.print.attribute.EnumSyntax

2005-11-13 Thread Wolfgang Baer
Mark Wielaard wrote: Hi, On Sat, 2005-11-12 at 21:06 +0100, Wolfgang Baer wrote: 2005-11-12 Wolfgang Baer [EMAIL PROTECTED] * javax/print/attribute/EnumSyntax.java: API docs added and enhanced for class and methods. (readResolve): New method. OK to commit ? Yes

Re: [cp-patches] Patch: RFC: javax.sound.sampled

2005-11-13 Thread Anthony Green
On Sat, 2005-11-12 at 17:51 -0700, Tom Tromey wrote: I'm not checking this in yet. I haven't really done much testing of it, and I wanted some feedback first as well. This implements javax.sound.sampled and javax.sound.sampled.spi. I think you should just commit this. I've started a jack

Re: [cp-patches] Patch: RFC: javax.sound.sampled

2005-11-13 Thread Tom Tromey
Michael == Michael Koch [EMAIL PROTECTED] writes: Michael I would say: Please commit. Bugs can be fixed later. Its too Michael bad that we cant just use tritonus ... We can probably use the parts that hook it up to ALSA and whatnot. I was using Tritonus for testing, but apparently it assumes

Re: [cp-patches] Patch: RFC: javax.sound.sampled

2005-11-13 Thread Tom Tromey
Anthony == Anthony Green [EMAIL PROTECTED] writes: Anthony I think you should just commit this. I've started a jack Anthony based MixerProvider based on your work, and expect to finish Anthony this week during my travels. Awesome. Also, Sven sent me some code to handle AU files. Maybe he

[cp-patches] Patch: FYI: .cvsignore cleanups

2005-11-13 Thread Tom Tromey
I'm checking this in. This adds or updates .cvsignore in a few places. Tom 2005-11-13 Tom Tromey [EMAIL PROTECTED] * native/jni/midi-dssi/.cvsignore: Updated. * native/jni/midi-alsa/.cvsignore: New file. * lib/.cvsignore: Updated. Index: lib/.cvsignore

[cp-patches] FYI: API docs update javax.print.attribute

2005-11-13 Thread Wolfgang Baer
Hi, this adds and enhances some api docs for some classes in javax.print.attribute. 2005-11-13 Wolfgang Baer [EMAIL PROTECTED] * javax/print/attribute/HashDocAttributeSet.java, * javax/print/attribute/HashPrintJobAttributeSet.java, *

Re: [cp-patches] FYI: API docs update javax.print.attribute

2005-11-13 Thread Wolfgang Baer
Sorry the changlog slipped into the patch. Here the patch without the changelog entry. Wolfgang 2005-11-13 Wolfgang Baer [EMAIL PROTECTED] * javax/print/attribute/HashDocAttributeSet.java, * javax/print/attribute/HashPrintJobAttributeSet.java, *

Re: [cp-patches] Patch: RFC: javax.sound.sampled

2005-11-13 Thread Anthony Green
On Sun, 2005-11-13 at 11:23 -0700, Tom Tromey wrote: Anthony == Anthony Green [EMAIL PROTECTED] writes: Anthony I think you should just commit this. I've started a jack Anthony based MixerProvider based on your work, and expect to finish Anthony this week during my travels. Awesome.

Re: [cp-patches] Patch: RFC: javax.sound.sampled

2005-11-13 Thread Tom Tromey
Anthony Nice. But for file I/O, shouldn't we just write a libsndfile Anthony provider? Yeah, good idea. Though, having some in pure java may also be useful. I think we can decide not to decide and just accept whatever folks write... Tom ___

[cp-patches] Patch: javax.print.attribute.HashAttributeSet fixlets

2005-11-13 Thread Wolfgang Baer
Hi, this patch adds and enhances api docs all over the class. Futher it fixes some minor bugs found by the mauve tests for this class. 2005-11-13 Wolfgang Baer [EMAIL PROTECTED] * javax/print/attribute/HashAttributeSet.java: Added api docs to class and clarified method

[cp-patches] FYI: Getting the system clipboard in javax/swing/TransferHandler

2005-11-13 Thread Meskauskas Audrius
The private method getClipboard in TransferHandler was always returning the VM local clipboard and not the system clipboard in the case when the security manager is not installed (typical case). With this patch, I am able to paste the external data from the system clipboard into the text

[cp-patches] VMStackWalker infinite loop fix

2005-11-13 Thread Archie Cobbs
I've committed the attached patch to fix an infinite loop between VMStackWalker.getCallingClassLoader() and Class.getClassLoader(). 2005-11-13 Archie Cobbs [EMAIL PROTECTED] * vm/reference/gnu/classpath/VMStackWalker.java (getClassLoader()): added to fix an infinite loop

[cp-patches] javax.swing.Timer rewrite

2005-11-13 Thread Mark Wielaard
Hi, As discussed on the main list Timer was not behaving correctly. Joao tested and suggested to just wrap util.Timer. And this seems to work well and the code is much simpler now. Thanks Joao. 2005-11-13 Mark Wielaard [EMAIL PROTECTED] As suggested by Joao Victor [EMAIL PROTECTED]:

Re: [cp-patches] Patch: javax.print.attribute.HashAttributeSet fixlets

2005-11-13 Thread Mark Wielaard
Hi Wolfgang, On Sun, 2005-11-13 at 20:58 +0100, Wolfgang Baer wrote: 2005-11-13 Wolfgang Baer [EMAIL PROTECTED] * javax/print/attribute/HashAttributeSet.java: Added api docs to class and clarified method documentation. (toArray): Use iterator from values instead of