[cp-patches] RFC: StrictMath.expm1 implemented

2006-07-22 Thread Carsten Neumann
Hi, this adds the expm1 method to java.lang.StrictMath. Please comment/commit. Thanks, Carsten 2006-07-22 Carsten Neumann <[EMAIL PROTECTED]> * StrictMath.java (expm1): New method. (EXPM1_Q1): New field. (EXPM1_Q2): Likewise. (

[cp-patches] RFC: [generics] CopyOnWriteArrayList.java more small fixes

2006-07-22 Thread Carsten Neumann
Hi, another set of small fixes for java.util.concurrent.CopyOnWriteArrayList.java Please comment/commit. Thanks, Carsten 2006-07-22 Carsten Neumann <[EMAIL PROTECTED]> * CopyOnWriteArrayList.java: Fixed some API docs. (serialVersionUID): New

[cp-patches] FYI: Kernel API doc updates

2006-07-22 Thread David Gilbert
This patch (committed) updates the API docs in the Kernel class: 2006-07-23 David Gilbert <[EMAIL PROTECTED]> * java/awt/image/Kernel.java: API doc updates. Regards, Dave Index: java/awt/image/Kernel.java === RCS file: /

Re: [cp-patches] [RFT] another CairoSurface optimization

2006-07-22 Thread Tom Tromey
> "Andreas" == Andreas Tobler <[EMAIL PROTECTED]> writes: Andreas> Ok for head if it works on LE too? This looks fine to me. Tom

[cp-patches] FYI: Restore --enable-collections functionality

2006-07-22 Thread Mark Wielaard
Hi, This restores the --enable-collections functionality. 2006-07-22 Mark Wielaard <[EMAIL PROTECTED]> * java/lang/Iterable.java: Import all of java.util. * lib/mkcollections.pl.in (javautilclasses): Add Iterable. * lib/Makefile.am: Only search for .java files in COLLECTIONS_PREFIX

[cp-patches] FYI: Add getType() to MemoryPoolMXBean

2006-07-22 Thread Andrew John Hughes
This adds the missing method, getType(), to MemoryPoolMXBean. A full implementation requires an enumeration, which I'll add when this is merged to generics. The HEAD version and the VM layer just uses a String. Changelog: 2006-07-22 Andrew John Hughes <[EMAIL PROTECTED]> * doc/vmintegr

[cp-patches] FYI: Move end of itemization block

2006-07-22 Thread Andrew John Hughes
This fixes the documentation so the end of the itemization block is in the right place. Changelog: 2006-07-22 Andrew John Hughes <[EMAIL PROTECTED]> * doc/vmintegration.texinfo: Move end of itemization block. -- Andrew :-) Escape the Java Trap with GNU Classpath! http://www.

[cp-patches] FYI: Document notifications

2006-07-22 Thread Andrew John Hughes
This adds documentation for the new notification support. Changelog: 2006-07-22 Andrew John Hughes <[EMAIL PROTECTED]> * doc/vmintegration.texinfo: Mention callback methods. * gnu/java/lang/management/MemoryMXBeanImpl.java: (fireNotification(String,String,long,l

[cp-patches] RFC: GtkMouseDragGestureRecognizer constructor

2006-07-22 Thread Mario Torre
Il giorno ven, 21/07/2006 alle 17.05 -0400, Lillian Angel ha scritto: > I forgot to remove some unused fields in the last patch. > > 2006-07-20 Lillian Angel <[EMAIL PROTECTED]> > > * gnu/java/awt/dnd/GtkMouseDragGestureRecognizer.java: > Removed unused fields. > (GtkMo

[cp-patches] [RFT] another CairoSurface optimization

2006-07-22 Thread Andreas Tobler
Hello all, Assen pointed out that this code could be optimized a bit more. Here the result. Would some Little Endian hackers please test if it still works ? Thanks to Assen. Ok for head if it works on LE too? Andreas 2006-07-22 Andreas Tobler <[EMAIL PROTECTED]> * gnu/java/awt/pe

[cp-patches] FYI: Add notification emission to MemoryMXBeanImpl

2006-07-22 Thread Andrew John Hughes
This adds methods to emit notifications to our memory bean implementation. Changelog: 2006-07-22 Andrew John Hughes <[EMAIL PROTECTED]> * gnu/java/lang/management/MemoryMXBeanImpl.java: (fireNotification(String,String,long,long,long,long,long)): Implemented. (fi

[cp-patches] FYI: new utility class IntegerUtil

2006-07-22 Thread Raif S. Naffah
hello all, the attached patch --already committed-- adds Integer related utility methods to: a. cache Integer.valueOf(String) results in a LRU of 100 places organised by access order, b. simulate the version 5 Integer.valueOf(int) method, so client code can run on a version 1.4 of the Java cl