How to make this a non-reflecting call?

2009-11-22 Thread David Brown
java.nio.channels.FileChannel contains some .write methods: [27] write : int (ByteBuffer) [28] write : int (ByteBuffer,long) [29] write : long (ByteBuffer[]) [30] write : long (ByteBuffer[],int,int) I have an array of ByteBufers, but I can't figure out how to call #29 without it being a

Re: How to make this a non-reflecting call?

2009-11-22 Thread John Harrop
On Sun, Nov 22, 2009 at 12:55 PM, David Brown cloj...@davidb.org wrote: java.nio.channels.FileChannel contains some .write methods: [27] write : int (ByteBuffer) [28] write : int (ByteBuffer,long) [29] write : long (ByteBuffer[]) [30] write : long (ByteBuffer[],int,int) I have an array of

Re: How to make this a non-reflecting call?

2009-11-22 Thread David Brown
On Sun, Nov 22, 2009 at 01:00:51PM -0500, John Harrop wrote: On Sun, Nov 22, 2009 at 12:55 PM, David Brown cloj...@davidb.org wrote: java.nio.channels.FileChannel contains some .write methods: [27] write : int (ByteBuffer) [28] write : int (ByteBuffer,long) [29] write : long (ByteBuffer[])

Re: How to make this a non-reflecting call?

2009-11-22 Thread Christophe Grand
Hi David, On Sun, Nov 22, 2009 at 6:55 PM, David Brown cloj...@davidb.org wrote: java.nio.channels.FileChannel contains some .write methods: [27] write : int (ByteBuffer) [28] write : int (ByteBuffer,long) [29] write : long (ByteBuffer[]) [30] write : long (ByteBuffer[],int,int) I have an