RE: [cp-patches] [generics] Patch: FYI: update Timer

2005-08-14 Thread Andrew John Hughes
On Sun, 2005-08-14 at 08:30 +0200, Jeroen Frijters wrote: > Hi Tom, > > Why are you checking this into the generics branch? I was under the > impression that 1.5 functionality could also be applied to the main > branch, as long as it doesn't require any 1.5 language features. > > Regards, > Jeroe

Re: [cp-patches] FYI: Some quick fixes for accessibility in Swing

2005-09-06 Thread Andrew John Hughes
On Tue, 2005-09-06 at 21:53 +0100, Paul Jenner wrote: > Hi Roman. > > On Tue, 2005-09-06 at 22:41 +0200, Roman Kennke wrote: > > I re-enabled some accessibility things in javax.swing that have been > > disabled due to a compiler bug in gcj < 4 > > > > 2005-09-06 Roman Kennke <[EMAIL PROTECTED]>

[cp-patches] Serialization fix

2005-09-12 Thread Andrew John Hughes
I'm committing the attached patch, which fixes the problem described in: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=310520 (for JamVM at least, the Kaffe problem seems to be something else) Changelog: 2005-09-12 Andrew John Hughes <[EMAIL PROTECTED]>

Re: [cp-patches] [RFC] JSSE 1.5 classes and methods

2005-09-13 Thread Andrew John Hughes
On Mon, 2005-09-12 at 22:33 -0700, Casey Marshall wrote: > Hi, > > Attached is a patch to implement most of the javax.net.ssl methods > and classes introduced in J2SE 1.5. > Great. > This isn't complete, partly due to missing classes elsewhere > (java.security.KeyStore.Builder) and due to t

[cp-patches] License fix

2005-09-21 Thread Andrew John Hughes
I'm committing the attached patch which fixes a few remaining cases of the wrong address within the GPL license. 2005-09-21 Andrew John Hughes <[EMAIL PROTECTED]> * gnu/classpath/ByteArray.java, * gnu/javax/crypto/DiffieHellmanImpl.java, * gnu/j

[cp-patches] [generics] License fix

2005-09-21 Thread Andrew John Hughes
I'm committing the attached patch to fix the license address in the new generics files. Changelog: 2005-09-21 Andrew John Hughes <[EMAIL PROTECTED]> * gnu/classpath/ByteArray.java, * gnu/classpath/ObjectPool.java, * gnu/javax/crypto/DiffieHellm

[cp-patches] Generics --> HEAD merge

2005-09-21 Thread Andrew John Hughes
I'm committing the attached patch to merge another of Tom's additions to the generics branch back to HEAD. Changelog: 2004-10-09 Tom Tromey <[EMAIL PROTECTED]> * java/lang/ClassLoader.java (defineClass(String,ByteBuffer,ProtectionDomain)): New method. -- Andrew :-) Please a

[cp-patches] [generics] More various generic fixes

2005-09-28 Thread Andrew John Hughes
I'm committing the attached patch, which fixes a number of generics-related problems highlighted by the JAPI CVS runs. Changelog: 2005-09-28 Andrew John Hughes <[EMAIL PROTECTED]> * gnu/java/awt/peer/qt/QtGraphics.java: (getRenderingHints()): Create a clone

[cp-patches] [generics] Various miscellaneous fixes found by JAPI or ecj

2005-10-12 Thread Andrew John Hughes
I'm committing the attached patch to fix a few methods and fields that lack generic information. Changelog: 2005-10-12 Andrew John Hughes <[EMAIL PROTECTED]> * java/awt/datatransfer/DataFlavor.java: (DataFlavor(Class,String,String): Genericized. * j

[cp-patches] [generics] More generic fixes

2005-10-16 Thread Andrew John Hughes
I'm committing the attached patch to fix more typing changes due to the 1.5 language additions. Changelog: 2005-10-16 Andrew John Hughes <[EMAIL PROTECTED]> * java/awt/image/BufferedImage.java: (getSources()): Genericized. * java/awt/image/Image

[cp-patches] Addition of XML output to java.util.Properties

2005-10-16 Thread Andrew John Hughes
I'm committing the attached patch to add XML property output. 2005-10-17 Andrew John Hughes <[EMAIL PROTECTED]> * java/util/Properties.java: (storeToXML(OutputStream,String)): Implemented. (storeToXml(OutputStream,String,String)): Likewise. -- Andrew :-) P

[cp-patches] Addition of XML input to java.util.Properties

2005-10-23 Thread Andrew John Hughes
on this shortly. The patch does work, with a input properties file hacked to use a locally modified version of the DTD. Changelog: 2005-10-23 Andrew John Hughes <[EMAIL PROTECTED]> * java/util/Properties.java (storeToXML(OutputStream,String,String)): Adde

[cp-patches] InvalidPropertiesFormatException patch

2005-10-23 Thread Andrew John Hughes
I'm committing the attached patch to port across this properties exception from the generics branch. It is required by the latest Properties patch. Changelog: 2005-08-13 Tom Tromey <[EMAIL PROTECTED]> * java/util/InvalidPropertiesFormatException.java: New file. -- Andrew :-) Please

Re: [cp-patches] Patch: use StringBuilder for reading/writing property files

2005-10-26 Thread Andrew John Hughes
On Wed, 2005-10-19 at 12:24 -0700, Anthony Green wrote: > Synchronization often shows up near the very top of gcj-compiled > benchmarks. It turns out that, for benchmarks I've run, ~50% of the > synchronization calls come from reading property files with > StringBuffer. This should all go away if

[cp-patches] Serialization regression fix

2005-11-01 Thread Andrew John Hughes
rk out why this was in there last time (I didn't put it there), and it doesn't seem to cause any problems pulling it out. Changelog: 2005-11-01 Andrew John Hughes <[EMAIL PROTECTED]> * java/io/ObjectInputStream.java: (parseContent(byte)): Remove weird exception

[cp-patches] AUTHORS update

2005-11-02 Thread Andrew John Hughes
I'm committing the attached patch to add myself to the AUTHORS list; it seems to be in vogue today. Changelog: 2005-11-02 Andrew John Hughes <[EMAIL PROTECTED]> * AUTHORS: Added myself. -- Andrew :-) Please avoid sending me Microsoft Office (e.g. Word, PowerPoint) attac

[cp-patches] [generics] AUTHORS fix

2005-11-02 Thread Andrew John Hughes
And likewise on generics. 2005-11-02 Andrew John Hughes <[EMAIL PROTECTED]> * AUTHORS: Added myself. -- Andrew :-) Please avoid sending me Microsoft Office (e.g. Word, PowerPoint) attachments. See http://www.fsf.org/philosophy/no-word-attachments.html If you use Microsoft

[cp-patches] [generics] Configure fix

2005-11-02 Thread Andrew John Hughes
I'm committing the attached patch, which removes the option of gcj, jikes or kjc compilation from the generics branch. This stops it picking a compiler that won't be able to handle the branch. Changelog: 2005-11-02 Andrew John Hughes <[EMAIL PROTECTED]> * exam

Re: [cp-patches] Patch: java.util.Arrays API methods implemented

2005-11-27 Thread Andrew John Hughes
On Mon, 2005-11-07 at 14:10 -0500, Anthony Balkissoon wrote: > Implemented the toString methods from java.util.Arrays that JAPI pointed > out were missing. > > 2005-11-07 Anthony Balkissoon <[EMAIL PROTECTED]> > > * java/util/Arrays.java: > (toString(long[])): New API method. >

Re: [cp-patches] [generics] FYI: New Instrumentation parameter to VMInstrumentationImpl.redefineClasses

2006-01-13 Thread Andrew John Hughes
On Sun, 2005-12-04 at 14:11 +0100, Nicolas Geoffray wrote: > Here's a fix that eases implementation of the > VMInstrumentationImpl.redefineClasses > method. The VM might not want to keep the Instrument object, therefore > it must > be given explicitely to the VMInstrumentationImpl.redefineClasses

[cp-patches] RFC: Introduction of VMMath

2006-02-06 Thread Andrew John Hughes
would be nice to know how to do this. I'm guessing that mprec is separate from fdlibm although it appears in the same directory; I recall there was talk of an update of this as well to probably handle 64-bit support. Changelog: 2006-02-06 Andrew John Hughes <[EMAIL PROTECTED

Re: [cp-patches] RFC: Introduction of VMMath

2006-02-07 Thread Andrew John Hughes
On Tue, 2006-02-07 at 00:20 +0100, Robert Schuster wrote: > Hi. > > Nice work. I think the JNode guys will appreciate this. :) > Yep, Ewout filed the bug. > > +package java.lang; > > + > > +import gnu.classpath.Configuration; > > + > > +class VMMath > > +{ > > + > > + static > > + { > > +

Re: [cp-patches] RFC: Introduction of VMMath

2006-02-13 Thread Andrew John Hughes
On Mon, 2006-02-06 at 21:58 +, Andrew John Hughes wrote: > I'd welcome any comments on the attached patch, > which separates the Math native methods into a separate > class, VMMath, so that they can optionally be replaced > by the VM. This fixes PR22198. > > I also ha

Re: [cp-patches] RFC: Introduction of VMMath

2006-02-16 Thread Andrew John Hughes
On Mon, 2006-02-13 at 20:11 +0100, Mark Wielaard wrote: > Hi Andrew, > > On Mon, 2006-02-13 at 16:13 +0000, Andrew John Hughes wrote: > > On Mon, 2006-02-06 at 21:58 +0000, Andrew John Hughes wrote: > > > I'd welcome any comments on the attached patch, > >

Re: [cp-patches] [generics] RFC: new Enum java.math.RoundingMode

2006-02-21 Thread Andrew John Hughes
On Mon, 2006-02-20 at 17:33 -0500, Anthony Balkissoon wrote: > On Mon, 2006-02-20 at 15:09 -0500, Anthony Balkissoon wrote: > > This is RFC because it's my first commit to the generics branch and I > > just want to make sure there aren't any special procedures I forgot. > > > > 2006-02-20 Anthon

Re: [cp-patches] [generics] RFC: new Enum java.math.RoundingMode

2006-02-21 Thread Andrew John Hughes
d, running autogen, configure, > ClasspathHeaders, BuildNative, etc. > Andrew Overholt gave it a quick look for me but we didn't see the > problem so we just worked around it on my local machine. > > > That's all for now, I should have some more java.math stuff ready so

[cp-patches] VMMath Documentation Update

2006-02-24 Thread Andrew John Hughes
The attached patch adds the proposed documentation changes mentioned earlier by Mark. A fix is on the way for the Darwin problem with the changes in fdlibm. Changelog: 2006-02-24 Andrew John Hughes <[EMAIL PROTECTED]> * NEWS: Mentions the VMMath runtime changes.

[cp-patches] FYI: Fixes for VMMath and crypto stuff

2006-02-24 Thread Andrew John Hughes
I'm committing the attached patch which fixes the Darwin build problem highlighted by Chris, and adds in a number of casts missing from the recent crypto changes. Changelog: 2006-02-24 Andrew John Hughes <[EMAIL PROTECTED]> * gnu/java/security/prng/BasePRNG.java:

Re: [cp-patches] [generics] some BigDecimal fixes and new methods

2006-02-28 Thread Andrew John Hughes
On Mon, 2006-02-27 at 16:36 -0500, Anthony Balkissoon wrote: > More stuff. Sorry for not sending this BigDecimal stuff all at once but > my test cases are small and I prefer to get the stuff committed once its > been tested. Also helps me use JAPI to determine what needs to be done. > > 2006-02-

Re: [cp-patches] [generics] some BigDecimal fixes and new methods

2006-02-28 Thread Andrew John Hughes
On Mon, 2006-02-27 at 16:36 -0500, Anthony Balkissoon wrote: > More stuff. Sorry for not sending this BigDecimal stuff all at once but > my test cases are small and I prefer to get the stuff committed once its > been tested. Also helps me use JAPI to determine what needs to be done. > > 2006-02-

[cp-patches] Solaris regression fix

2006-03-02 Thread Andrew John Hughes
The attached patch puts back a line required for Classpath to be built on Solaris. It seems to have been lost in the move from PlainSocketImpl to VMPlainSocketImpl. Changelog: 2006-03-02 Andrew John Hughes <[EMAIL PROTECTED]> * native/jni/java-net/gnu_java_net_VMPlainSocket

Re: [cp-patches] FYI: Made some classes final as pointed out by JAPI

2006-03-15 Thread Andrew John Hughes
On Wed, 15 Mar 2006 17:16:33 +0100 Wolfgang Baer <[EMAIL PROTECTED]> wrote: > Hi Audrius, > > Audrius Meskauskas wrote: > > Great job! > > There are a lot more of these issues as pointed out by reverse japi. > http://www.kaffe.org/~stuart/japi/htmlout/h-classpath-jdk15.html > > I will try conti

[cp-patches] RFC: VM Interface Change: Addition of VMArray

2006-03-18 Thread Andrew John Hughes
I propose the attached patch which moves the native method in java.lang.reflect.Array to a new VMArray class, as per PR#22923. Changelog: 2006-03-18 Andrew John Hughes <[EMAIL PROTECTED]> * doc/vmintegration.texinfo: Updated to include VMArray. * include/Makef

Re: [cp-patches] RFC: VM Interface Change: Addition of VMArray

2006-03-19 Thread Andrew John Hughes
On Sun, 2006-03-19 at 01:05 +, Andrew John Hughes wrote: > I propose the attached patch which moves the native method in > java.lang.reflect.Array to a new VMArray class, as per PR#22923. > > Changelog: > > 2006-03-18 Andrew John Hughes <[EMAIL PROTECTED

Re: [cp-patches] Patch: FYI: implement NumericShaper

2006-03-19 Thread Andrew John Hughes
On Sun, 2006-03-19 at 21:36 +, David Gilbert wrote: > Tom Tromey wrote: > > >We need to declare war on stubs. They improperly inflate our japi > >scores and blind us to the real state of Classpath. Also I seem to > >keep running into them as I dig around :-( > > > > > I've spotted a few in

[cp-patches] [generics+HEAD] FYI: New VM Interface: Unsafe

2006-03-19 Thread Andrew John Hughes
will need to be supported by VMs in order to handle the concurrency code. As part of the VM layer, I'm committing this to both branches, as we want to keep these as consistent as possible. Changelog: 2006-03-19 Andrew John Hughes <[EMAIL PROTECTED]> * vm/reference/gnu/class

[cp-patches] FYI: News update

2006-03-19 Thread Andrew John Hughes
The attached patch simply updates NEWS with the recent VM changes. Changelog: 2006-03-20 Andrew John Hughes <[EMAIL PROTECTED]> * NEWS: Updated with VMArray and Unsafe changes. -- Andrew :-) Please avoid sending me Microsoft Office (e.g. Word, PowerPoint) attachment

Re: [cp-patches] Patch: FYI: implement NumericShaper

2006-03-19 Thread Andrew John Hughes
On Sun, 2006-03-19 at 19:58 -0500, Stuart Ballard wrote: > On 3/19/06, Andrew John Hughes <[EMAIL PROTECTED]> wrote: > > I think the interface problem you mention is the most obvious, but I > > think this should be solvable by declaring the class abstract (which >

[cp-patches] [generics] FYI: Make Formatter final.

2006-03-19 Thread Andrew John Hughes
The attached patch just makes java.util.Formatter final, as demonstrated by JAPI. Changelog: 2006-03-20 Andrew John Hughes <[EMAIL PROTECTED]> * java/util/Formatter.java: Make the class final. -- Andrew :-) Please avoid sending me Microsoft Office (e.g. Word, Powe

[cp-patches] FYI: VM doc update

2006-03-19 Thread Andrew John Hughes
I'm committing the attached patch which synchronizes the VM integration doc with the addition of gnu.classpath.Unsafe. Changelog: 2006-03-20 Andrew John Hughes <[EMAIL PROTECTED]> * doc/vmintegration.texinfo: Updated with gnu.classpath.Unsafe -- Andrew :-) P

[cp-patches] [generics] FYI: Getting ready for concurrency

2006-03-20 Thread Andrew John Hughes
I'm committing the attached patch which adds some features required by the new concurrency tree prepared by Tom Tromey and documented by myself. Changelog: 2006-03-20 Andrew John Hughes <[EMAIL PROTECTED]> * java/lang/System.java: (nanoTime()): Documented.

[cp-patches] Flagging stubs -- was FYI: implement NumericShaper

2006-03-20 Thread Andrew John Hughes
On Mon, 20 Mar 2006 09:15:41 -0500 "Stuart Ballard" <[EMAIL PROTECTED]> wrote: > On 3/19/06, Stuart Ballard <[EMAIL PROTECTED]> wrote: > > As far as I can figure out, an annotation is pretty much the only way > > to get these kinds of methods to get flagged by Japi. > > Actually, I figured out (a

Re: [cp-patches] Patch: FYI: implement NumericShaper

2006-03-21 Thread Andrew John Hughes
On 20 Mar 2006 11:47:34 -0700 Tom Tromey <[EMAIL PROTECTED]> wrote: > > "Stuart" == Stuart Ballard <[EMAIL PROTECTED]> writes: > > Stuart> What's the status on the whole ecj-as-gcc-frontend thing? > > It is still being discussed by the GCC Steering Committee. I'm > hopeful that we'll get th

Re: [cp-patches] Patch: FYI: implement NumericShaper

2006-03-22 Thread Andrew John Hughes
On 21 Mar 2006 17:36:52 -0700 Tom Tromey <[EMAIL PROTECTED]> wrote: > > "Tom" == Tom Tromey <[EMAIL PROTECTED]> writes: > > > "Stuart" == Stuart Ballard <[EMAIL PROTECTED]> writes: > > Stuart> I believe Classpath already has an unchecked NotImplementedException > Stuart> so that's what I

[cp-patches] Re: [commit-cp] classpath ./ChangeLog gnu/java/lang/ClassHelper... [generics-branch]

2006-03-25 Thread Andrew John Hughes
> > On Sat, 2006-03-25 at 01:46 +, Andrew John Hughes wrote: > > CVSROOT:/cvsroot/classpath > > Module name:classpath > > Branch: generics-branch > > Changes by: Andrew John Hughes <[EMAIL PROTECTED]> 06/03/25 01:46:13 > > &g

[cp-patches] Generics-->HEAD Merge

2006-03-26 Thread Andrew John Hughes
I'm committing the attached patch which merges some long-standing changes in InputStream (August '04) to HEAD. Changelog: 2006-03-26 Tom Tromey <[EMAIL PROTECTED]> * java/io/InputStream.java (InputStream): Implements Closeable.

[cp-patches] [generics] More Merging

2006-03-26 Thread Andrew John Hughes
I'm committing the attached patch which merges some minor differences between files on HEAD and the generics branch. Changelog: 2006-03-26 Andrew John Hughes <[EMAIL PROTECTED]> * gnu/java/net/protocol/http/Headers.java: Match layout of file on HEAD. * gnu/

[cp-patches] FYI: Remove CVS revisions from gnu.security import

2006-03-26 Thread Andrew John Hughes
2006-03-26 Andrew John Hughes <[EMAIL PROTECTED]> * gnu/java/security/jce/hash/HavalSpi.java, * gnu/java/security/jce/hash/MD2Spi.java, * gnu/java/security/jce/hash/MD4Spi.java, * gnu/java/security/jce/hash/MD5Spi.java, * gnu/java/s

[cp-patches] FYI: [generics] Make ProcessBuilder final

2006-03-26 Thread Andrew John Hughes
I'm committing the attached patch which fixes a bug turned up by reverse JAPI: java.lang.ProcessBuilder should be final. Changelog: 2006-03-26 Andrew John Hughes <[EMAIL PROTECTED]> * java/lang/ProcessBuilder.java: Made final. -- Andrew :-) Please avoid sending m

[cp-patches] FYI: [generics] Update documentation of java.io.CharArrayWriter

2006-03-27 Thread Andrew John Hughes
I'm committing the attached patch which adds documentation to the three new methods in java.io.CharArrayWriter. Changelog: 2006-03-27 Andrew John Hughes <[EMAIL PROTECTED]> * java/io/CharArrayWriter.java: (append(char)): Documented. (append(CharSequence)

[cp-patches] FYI: Merging java.io.CharArrayWriter from the generics branch

2006-03-27 Thread Andrew John Hughes
I'm committing the attached patch which merges in the additions to java.io.CharArrayWriter from the generics branch. Changelog: 2006-03-27 Andrew John Hughes <[EMAIL PROTECTED]> * java/io/CharArrayWriter.java: (append(char)): Documented. (append(C

[cp-patches] FYI: Make ActivationGroup_Stub final.

2006-03-27 Thread Andrew John Hughes
I'm committing the attached patch which fixes a bug found by reverse JAPI. Changelog: 2006-03-27 Andrew John Hughes <[EMAIL PROTECTED]> * java/rmi/activation/ActivationGroup_Stub.java: Made final. -- Andrew :-) Please avoid sending me Microsoft Office (e.g. Word,

[cp-patches] FYI: [generics] Fix serialization UIDs for the new enums.

2006-03-27 Thread Andrew John Hughes
I'm committing the attached patch which fixes the serialization UIDs for two new enumerations. Changelog: 2006-03-27 Andrew John Hughes <[EMAIL PROTECTED]> * java/math/RoundingMode.java: Fixed serialization UID. * java/net/Proxy.java: (Type

[cp-patches] FYI: [generics] Fix build failure

2006-03-28 Thread Andrew John Hughes
I'm committing the attached patch which fixes a build failure I caused by my changes to java.net.Proxy last night; apologies. Changelog: 2006-03-28 Andrew John Hughes <[EMAIL PROTECTED]> * java/net/Proxy.java: (Type): Add missing semi-colon. -- Andrew :-) P

[cp-patches] [generics] FYI: Addition of enum deserialization

2006-03-29 Thread Andrew John Hughes
ilable for anything but the branch. Changelog: 2006-03-29 Andrew John Hughes <[EMAIL PROTECTED]> * java/io/ObjectInputStream.java: (parseContent(byte)): Added enum support. * java/io/ObjectStreamConstants.java: (TC_ENUM): Added. (TC_MAX): Ch

[cp-patches] [generics] FYI: Add enum serialization support

2006-04-02 Thread Andrew John Hughes
I'm committing the attached patch which adds enum serialization support to ObjectOutputStream. Changelog: 2006-04-02 Andrew John Hughes <[EMAIL PROTECTED]> * java/io/ObjectOutputStream.java: (writeObject(Object)): Added enum support. (writeClas

[cp-patches] [generics] FYI: Fixed signatures in java.util.Collections reported by JAPI.

2006-04-02 Thread Andrew John Hughes
I'm committing the attached patch which fixes the types of some signatures in java.util.Collections reported by JAPI. Changelog: 2006-04-02 Andrew John Hughes <[EMAIL PROTECTED]> * java/util/Collections.java: (binarySearch(List, T)): Fixed signature. (unmod

Re: [cp-patches] FYI: Merge Thread.UncaughtExceptionHandler support from generics branch

2006-04-13 Thread Andrew John Hughes
On Wed, Apr 12, 2006 at 06:14:33PM +0200, Mark Wielaard wrote: > Hi Archie, > > On Wed, 2006-04-12 at 09:10 -0500, Archie Cobbs wrote: > > Mark Wielaard wrote: > > > + /** > > > + * > > > + * Returns the handler used when this thread terminates due to an > > > + * uncaught exception. The

[cp-patches] FYI: Remove CVS revisions from gnu.crypto etc.

2006-04-13 Thread Andrew John Hughes
I'm committing the attached patch which removes the $Revision CVS tags from the remaining gnu.crypto import stuff. Changelog: 2006-04-13 Andrew John Hughes <[EMAIL PROTECTED]> * gnu/javax/crypto/assembly/Assembly.java, * gnu/javax/crypto/assembly/C

[cp-patches] FYI: Adding missing accessibility constants and minor VM stuff from generics

2006-04-15 Thread Andrew John Hughes
I'm committing the attached patch which adds the remaining missing constants in javax.accessibility. It also adds a few missing bits of the VM classes that missed the last merge (spotted when going back from HEAD to generics). Changelog: 2006-04-15 Andrew John Hughes <[EMAIL P

[cp-patches] FYI: Documentation update for generics additions

2006-04-16 Thread Andrew John Hughes
I'm committing the attached patch to HEAD to update the documentation with the recent VM changes. Changelog: 2006-04-16 Andrew John Hughes <[EMAIL PROTECTED]> * NEWS: Mention generics additions to the VM interface. * doc/vmintegration.texinfo: Added

[cp-patches] FYI: Minor documentation fix

2006-04-16 Thread Andrew John Hughes
I'm committing the attached patch which fixes a minor sectioning bug in the recent documentation update. Changelog: 2006-04-16 Andrew John Hughes <[EMAIL PROTECTED]> * doc/vmintegration.texinfo: Fix sectioning. -- Andrew :-) Please avoid sending me Micro

[cp-patches] FYI: Merging java.lang.instrument from generics branch

2006-04-16 Thread Andrew John Hughes
I'm committing the attached patch to merge in a slightly-altered (sans generic-typing) version of java.lang.instrument from the generics branch. Note that this is just the front-facing bit; the VM side is still to come. Changelog: 2005-12-13 Tom Tromey <[EMAIL PROTECTED]> * java/lan

[cp-patches] FYI: [generics] Document java.lang.annotation.Annotation

2006-04-16 Thread Andrew John Hughes
I'm committing the attached patch to add documentation to java.lang.annotation.Annotation. Changelog: 2006-04-17 Andrew John Hughes <[EMAIL PROTECTED]> * java/lang/annotation/Annotation.java: Documented. -- Andrew :-) Please avoid sending me Microsoft Office

[cp-patches] FYI: Merging more annotation stuff from generics branch

2006-04-16 Thread Andrew John Hughes
I'm committing the attached patch which brings in a few more files from the generics branch that will compile on HEAD with some minor signature changes. Changelog: 2006-04-17 Andrew John Hughes <[EMAIL PROTECTED]> * java/lang/annotation/Annotation.java: Documented.

[cp-patches] FYI: [generics] Move InstrumentationImpl to gnu.java.lang

2006-04-17 Thread Andrew John Hughes
I'm committing the attached patch to move the instrumentation implementation to a more appropriate location in gnu.java.lang. Changelog: 2006-04-17 Andrew John Hughes <[EMAIL PROTECTED]> * gnu/java/lang/InstrumentationImpl.java: Moved from java.lang.

Re: [cp-patches] FYI: Merged a few java.lang.* changes from generics branch

2006-04-17 Thread Andrew John Hughes
On Mon, 2006-04-17 at 12:28 +0200, Jeroen Frijters wrote: > Hi, > > I merged a few things from the generics branch to the trunk. > > Regards, > Jeroen > > 2006-04-17 Jeroen Frijters <[EMAIL PROTECTED]> > > * java/lang/Boolean.java: Implemented Comparable. > * java/lang/ClassLo

[cp-patches] FYI: VM layer of java.lang.instrument

2006-04-17 Thread Andrew John Hughes
2006-04-17 Andrew John Hughes <[EMAIL PROTECTED]> * gnu/java/lang/InstrumentationImpl.java: Moved from java.lang. * java/lang/InstrumentationImpl.java: Removed. * vm/reference/gnu/java/lang/VMInstrumentationImpl.java: Moved from java.lang.

[cp-patches] FYI: Update documentation for java.lang.instrument

2006-04-17 Thread Andrew John Hughes
I'm committing the attached patch to update the documentation to match the recent changes to the instrumentation stuff. Changelog: -- Andrew :-) Please avoid sending me Microsoft Office (e.g. Word, PowerPoint) attachments. See http://www.fsf.org/philosophy/no-word-attachments.html If you use

[cp-patches] FYI: [generics] Document java.lang.Enum

2006-04-17 Thread Andrew John Hughes
I'm committing the attached patch which adds documentation to java.lang.Enum. Changelog: 2006-04-17 Andrew John Hughes <[EMAIL PROTECTED]> * java/lang/Enum.java: Documented. -- Andrew :-) Please avoid sending me Microsoft Office (e.g. Word, PowerPoint) attachment

[cp-patches] FYI: Document Enum

2006-04-17 Thread Andrew John Hughes
I'm committing the attached patch to add documentation to java.lang.Enum (HEAD this time). Changelog: 2006-04-17 Andrew John Hughes <[EMAIL PROTECTED]> * java/lang/Enum.java: Documented. -- Andrew :-) Please avoid sending me Microsoft Office (e.g. Word, PowerPoint) attac

Re: [cp-patches] RFC: Class/VMClass merge from generics branch

2006-04-21 Thread Andrew John Hughes
On Fri, 2006-04-21 at 15:23 +0200, Jeroen Frijters wrote: > Hi, > > Since we can now support annotations on the trunk I'd like to merge > Class/VMClass with the versions from the generics branch (modulo any 1.5 > language feature, of course). > I thought we agreed that these should be exactly th

RE: [cp-patches] RFC: Class/VMClass merge from generics branch

2006-04-22 Thread Andrew John Hughes
On Sat, 2006-04-22 at 08:30 +0200, Jeroen Frijters wrote: > Andrew John Hughes wrote: > > On Fri, 2006-04-21 at 15:23 +0200, Jeroen Frijters wrote: > > > Since we can now support annotations on the trunk I'd like to merge > > > Class/VMClass with the v

Re: [cp-patches] [generics] FYI updated AccessibleObject to 1.5

2006-04-22 Thread Andrew John Hughes
On 21 Apr 2006, at 10:45, Jeroen Frijters wrote: Hi, I updated java.lang.reflect.AccessibleObject to 1.5. I wrote some throwaway code to figure out the JDK 1.5 behavior for these methods and duplicated that. Regards, Jeroen 2006-04-21 Jeroen Frijters <[EMAIL PROTECTED]> * java/

[cp-patches] FYI: Linking instrumentation into java.lang.Classloader

2006-04-22 Thread Andrew John Hughes
I'm committing the attached patch which links the java.lang.instrumentation stuff into ClassLoader. NOTE: This makes defineClassWithTransformers a necessity. Changelog: 2005-12-14 Nicolas Geoffray <[EMAIL PROTECTED]> * java/lang/ClassLoader (defineClass(String,byte[],int,int,P

Re: [cp-patches] [generics] FYI: Moved getEnumConstants implementation from VMClass to Class

2006-04-23 Thread Andrew John Hughes
On Sun, 2006-04-23 at 12:16 +0200, Jeroen Frijters wrote: > Hi, > > Since I'm shortly going to commit my change to trunk, I've committed > this to the generics branch to make the VM interfaces the same. > > Regards, > Jeroen > > 2006-04-23 Jeroen Frijters <[EMAIL PROTECTED]> > > * jav

Re: [cp-patches] [generics] Patch: FYI: minor generics updates

2006-04-26 Thread Andrew John Hughes
On 25 Apr 2006 17:02:43 -0600 Tom Tromey <[EMAIL PROTECTED]> wrote: > I'm checking this in on the generics branch. > > This fixes a few problems on the generics branch as pointed out by > japi. > > Tom > > 2006-04-25 Tom Tromey <[EMAIL PROTECTED]> > > * javax/swing/JComboBox.java (Acce

Re: [cp-patches] FYI: Merged Package annotation support fromgenerics branch

2006-04-26 Thread Andrew John Hughes
On 26 Apr 2006, at 18:37, Tom Tromey wrote: "Mark" == Mark Wielaard <[EMAIL PROTECTED]> writes: Mark> It would be a good point to declare the vm classes interface Mark> frozen for now and work towards a new snapshot release that Mark> includes them. Actually I would like to make one more cha

[cp-patches] FYI: Add generation of gnu.java.net.local.LocalSocketImpl.h

2006-05-03 Thread Andrew John Hughes
I'm committing the attached patch which adds regeneration of gnu.java.net.LocalSocketImpl.h to the include Makefile.am and also fixes a header I wrongly changed a few weeks back. Changelog: 2006-05-03 Andrew John Hughes <[EMAIL PROTECTED]> * include/Makefile.am:

[cp-patches] FYI: Version update

2006-05-03 Thread Andrew John Hughes
I'm committing the attached patch to move HEAD on to version 0.92. Changelog: 2006-05-03 Andrew John Hughes <[EMAIL PROTECTED]> * configure.ac: Set version to 0.92-pre. * NEWS: Add space for 0.92 entries. -- Andrew :-) Please avoid sending m

Re: [cp-patches] FYI: Fixing painting of the empty tree.

2006-05-05 Thread Andrew John Hughes
On Fri, 05 May 2006 10:05:59 +0200 Audrius Meskauskas <[EMAIL PROTECTED]> wrote: > This patch fixes the NPE, observed by Lillian when running jode. The NPE > is raised if the tree contains no visible nodes. > > 2006-05-05 Audrius Meskauskas <[EMAIL PROTECTED]> > > javax/swing/plaf/basic/B

Re: [cp-patches] Patch: JLabel fix

2006-05-07 Thread Andrew John Hughes
On Thu, 2006-05-04 at 15:10 -0400, Lillian Angel wrote: > 2006-05-04 Lillian Angel <[EMAIL PROTECTED]> > > * javax/swing/JLabel.java > (JLabel): Pass in an empty string for the text parameter. > (JLabel): Likewise. > (JLabel): Likewise. Committed to the release

Re: [cp-patches] FYI: bug fix to the keytool ExportCmd

2006-05-07 Thread Andrew John Hughes
On Thu, 2006-05-04 at 09:19 +1000, Raif S. Naffah wrote: > > 2006-05-04 Raif S. Naffah <[EMAIL PROTECTED]> > > * tools/gnu/classpath/tools/keytool/ExportCmd.java (setup): > Use _alias instead of alias. Committed to the release branch. -- Andrew :-) Please avoid sending me Mi

Re: [cp-patches] FYI: JTable fixes

2006-05-07 Thread Andrew John Hughes
On Thu, 2006-05-04 at 14:13 +0200, Roman Kennke wrote: > The attached patch fixes a couple of issues in JTables: > - the border color for selected cells was not correct in the Metal L&F > - the table was not painted correctly. The grid must be painted to the > right and bottom of each cell, we pain

Re: [cp-patches] FYI: More JTable fixes

2006-05-07 Thread Andrew John Hughes
On Thu, 2006-05-04 at 14:19 +0200, Roman Kennke wrote: > I forgot one patch. This one fixes the colors and borders for selected > table cells. > > 2006-05-04 Roman Kennke <[EMAIL PROTECTED]> > > * javax/swing/table/DefaultTableCellModel.java > (noFocusBorder): Fixed width of empt

Re: [cp-patches] FYI: RasterGraphics implementation

2006-05-07 Thread Andrew John Hughes
On Sun, 2006-05-07 at 03:46 +0200, Roman Kennke wrote: > Here I provide an implementation of the new Java2D, it's called > RasterGraphics and extends AbstractGraphics2D for arbitrary Rasters. > This implementation serves two purposes: > > 1. (most importantly) provide capability to render on Buffe

Re: [cp-patches] FYI: Java2D painting and compositing

2006-05-07 Thread Andrew John Hughes
On Sun, 2006-05-07 at 03:37 +0200, Roman Kennke wrote: > I implemented support for painting (Color, Texture and Gradient, at > least theoretically - see below) and compositing for the > AbstractGraphics2D class. This allows for the following: > > http://kennke.org/blog/blosxom.cgi/2006/05/06#java2

Re: [cp-patches] FYI: AbstractButton new methods

2006-05-07 Thread Andrew John Hughes
On Thu, 2006-05-04 at 15:14 +0200, Roman Kennke wrote: > I noticed that in AbstractButton we have two new methods since 1.5: > addImp() and setLayout(). After playing around with them I figured that > addImpl() installs an OverlayLayout, but only in the case when the > client app hasn't installed a

Re: [cp-patches] FYI: AlphaCompositeContext fixes

2006-05-07 Thread Andrew John Hughes
On Sun, 2006-05-07 at 03:17 +0200, Roman Kennke wrote: > I fixed a couple of bugs in my (completely naive and until now untested) > implementation of AlphaCompositeContext. Compositing works correctly > now, albeit awfully slow: > > http://kennke.org/~roman/java2d.png > > > 2006-05-07 Roman Ken

Re: [cp-patches] FYI: ColorModel fix

2006-05-07 Thread Andrew John Hughes
On Fri, 2006-05-05 at 15:08 +0200, Roman Kennke wrote: > In ColorModel the method getNormalizedComponents hasn't been implemented > with the remark, that subclasses are expected to implement that method. > This seems not quite right, according to the API specs and I filled in > the missing 'fallbac

Re: [cp-patches] FYI: BasicRadioButtonUI fixlet

2006-05-07 Thread Andrew John Hughes
On Fri, 2006-05-05 at 13:59 +0200, Roman Kennke wrote: > I was having a problem with an application that overrides setEnabled() > and isEnabled() in a JCheckBox in an weird way, which ended up in an > inconstisant state of JCheckBox.isEnabled() and > JCheckBox.getButtonModel().isEnabled(). This cau

Re: [cp-patches] FYI: JLabel fixlets

2006-05-07 Thread Andrew John Hughes
On Thu, 2006-05-04 at 15:30 +0200, Roman Kennke wrote: > I tagged some methods in JLabel as not implemented, added comments to > others and changed paramString() to return super.paramString() which > provides more meaningful information than "JLabel". > > 2006-05-04 Roman Kennke <[EMAIL PROTECTED

Re: [cp-patches] FYI: BasicButtonListener fixlet

2006-05-07 Thread Andrew John Hughes
On Thu, 2006-05-04 at 16:48 +0200, Roman Kennke wrote: > When playing with some apps I noticed that our conditions in > BasicButtonListener.mouseEntered() where not quite right. Fixed by the > attached patch. > > 2006-05-04 Roman Kennke <[EMAIL PROTECTED]> > > * javax/swing/plaf/basic/Ba

Re: [cp-patches] FYI: AccessibleJOptionPane fixlet

2006-05-07 Thread Andrew John Hughes
On Thu, 2006-05-04 at 16:12 +0200, Roman Kennke wrote: > I implemented one stubbed method in AccessibleJOptionPane. > > 2006-05-04 Roman Kennke <[EMAIL PROTECTED]> > > * javax/swing/JOptionPane.java > (AccessibleJOptionPane.getAccessibleRole): Implemented method. > > /Roman Com

Re: [cp-patches] FYI: JComponent painting fixlet

2006-05-07 Thread Andrew John Hughes
On Thu, 2006-05-04 at 15:22 +0200, Roman Kennke wrote: > I added a null check in JComponent.paint() to avoid an NPE when the clip > is null. The clip is allowed to be null, but with the GTK peers it seems > it never becomes actually null. I came across this while playing with my > XAWT peers. > >

Re: [cp-patches] FYI: JTable fix

2006-05-07 Thread Andrew John Hughes
On Fri, 2006-05-05 at 11:42 +0200, Roman Kennke wrote: > The selection model of a JTable must be synced when the table model > changes (i.e. insertion/removal of rows). This patch fixes this. > > 2006-05-05 Roman Kennke <[EMAIL PROTECTED]> > > * javax/swing/JTable.java > (tableCh

[cp-patches] FYI: Fix for PR#27311

2006-05-07 Thread Andrew John Hughes
ell. Changelog: 2006-05-07 Andrew John Hughes <[EMAIL PROTECTED]> * gnu/java/text/StringFormatBuffer.java: (toString()): Implemented so we can see the contents. * java/text/DecimalFormat.java: (formatInternal(double,StringFormatBuffer,FieldPosition)):

Re: [cp-patches] FYI: Cursor fixes

2006-05-07 Thread Andrew John Hughes
On Sun, 2006-05-07 at 02:13 +0200, Sven de Marothy wrote: > Hello, > Having GLightweightPeer as a MouseListener (as per Mark's last fix) > seems to add problems (clobbering the mouse-listener list). So now the > setCursor call is done from Component instead. > > Also BasicTableHeaderUI didn't rese

Re: [cp-patches] FYI: GtkImage fix

2006-05-07 Thread Andrew John Hughes
On Sat, 2006-05-06 at 23:07 +0200, Sven de Marothy wrote: > 2006-05-06 Sven de Marothy <[EMAIL PROTECTED]> > > Fixed PR27454 > * gnu/java/awt/peer/gtk/GtkImage: (drawPixels,drawPixelsScaled): > Check for zero image sizes. Committed to the release branch. -- Andrew :-) Please avoi

Re: [cp-patches] FYI: JInternalFrame icon fix

2006-05-07 Thread Andrew John Hughes
On Sun, 2006-05-07 at 23:42 +0200, Sven de Marothy wrote: > 2006-05-07 Sven de Marothy <[EMAIL PROTECTED]> > > Fixed PR27463 > * javax/swing/plaf/metal/MetalInternalFrameTitlePane.java > (propertyChange): Handle FRAME_ICON_PROPERTY property. > Committed to the release br

  1   2   3   4   5   6   7   8   >