Re: [cp-patches] Patch: NullPointerException in ToolTipManger #11538

2005-06-17 Thread Roman Kennke
Hi Lillian, This simple patch fixes the NullPointerException in the function mousePressed in ToolTipManager. Attached is the patch. 2005-06-15 Lillian Angel [EMAIL PROTECTED] * javax/swing/ToolTipManager.java Fixed Bug #11538. (mousePressed): check if

Re: [cp-patches] Patch: Scroll pane containing a JList with a preferred size.

2005-06-17 Thread Roman Kennke
Hi Lillian, Lillian Angel wrote: I fixed these 2 bugs. Attached is a patch file. --- javax/swing/JViewport.java 27 May 2005 21:12:46 - 1.20 +++ javax/swing/JViewport.java 16 Jun 2005 16:56:53 - @@ -344,6 +344,12 @@ viewListener = createViewListener();

[cp-patches] [generics] FYI: java/util/TreeMap.java java/lang/ThreadLocal.java compilation fixes

2005-06-17 Thread Jeroen Frijters
Hi, I committed the attached patch. Regards, Jeroen 2005-06-17 Jeroen Frijters [EMAIL PROTECTED] * java/lang/ThreadLocal.java, java/util/TreeMap.java: Fixes to make compiling with Eclipse Java Compiler SVN HEAD possible. Index: java/lang/ThreadLocal.java

[cp-patches] [generics] RFC: VM interface changes

2005-06-17 Thread Jeroen Frijters
Hi, Here is the first part of my proposed VM interface changes to make the VM interface more compatible with HEAD. Please comment. Regards, Jeroen Index: java/lang/Class.java === RCS file:

Re: [cp-patches] Patch: Scroll pane containing a JList with a preferred size.

2005-06-17 Thread Tom Tromey
Lillian == Lillian Angel [EMAIL PROTECTED] writes: A small formatting nit ... Lillian + if (p instanceof JScrollPane !vd.equals( new Dimension() )) Lillian + ( (JScrollPane) p ).setPreferredSize( vd ); The spaces are in the wrong places here. Should be: if (p

Re: [cp-patches] Patch: Scroll pane containing a JList with a preferred size.

2005-06-17 Thread Lillian Angel
On Fri, 2005-06-17 at 08:17 -0600, Tom Tromey wrote: Lillian == Lillian Angel [EMAIL PROTECTED] writes: A small formatting nit ... Lillian +if (p instanceof JScrollPane !vd.equals( new Dimension() )) Lillian +( (JScrollPane) p ).setPreferredSize( vd );

[cp-patches] view in JScrollPane

2005-06-17 Thread Lillian Angel
With the new changes to JScrollPane, the view would not appear because the viewport view was never initialized. I fixed this. 2005-06-17 Lillian Angel [EMAIL PROTECTED] * javax/swing/JScrollPane.java (JScrollPane): Viewport was not being set when the view was null.

[cp-patches] Re: [RFA/JDWP] Exceptions

2005-06-17 Thread Tom Tromey
Keith == Keith Seitz [EMAIL PROTECTED] writes: Keith Okay, this is another mean-spirited patch. It contains a bunch of Keith exception types used by the JDWP back-end. Sadly, it does not contain Keith all of them -- JDWP defines new errors for every little thing. The rest Keith will be added as

[cp-patches] Patch: view in JScrollPane

2005-06-17 Thread Lillian Angel
I fixed the Patch in this attachment to not include the ChangeLog. Sorry about that. 2005-06-17 Lillian Angel [EMAIL PROTECTED] * javax/swing/JScrollPane.java (JScrollPane): Viewport was not being set when the view was null. Whenever a view would be added to container

[cp-patches] Re: [RFA/JDWP] Exceptions

2005-06-17 Thread Keith Seitz
On Fri, 2005-06-17 at 08:29 -0600, Tom Tromey wrote: Keith == Keith Seitz [EMAIL PROTECTED] writes: Keith Okay, this is another mean-spirited patch. It contains a bunch of Keith exception types used by the JDWP back-end. Sadly, it does not contain Keith all of them -- JDWP defines new

[cp-patches] Re: [RFA/JDWP] ReferenceKey

2005-06-17 Thread Keith Seitz
On Fri, 2005-06-17 at 12:25 -0700, Keith Seitz wrote: ChangeLog 2005-06-17 Keith Seitz [EMAIL PROTECTED] * gnu/classpath/jdwp/id/ReferenceKey.java: New file. Geez. I did it again... Patch is attached this time. Really. It is. I promise. Keith Index:

[cp-patches] [RFA/JDWP] ReferenceKey

2005-06-17 Thread Keith Seitz
Hi, Okay, here'e where the weirdness starts. The ID manager (not yet submitted) keeps a table which map objects to IDs. This is used to quickly lookup Objects to see if they have an ID associated with them already. The ReferenceKey class is a SoftReference class with some logic to allow the ID

[cp-patches] Patch: FYI: detect -encoding option for jikes

2005-06-17 Thread Tom Tromey
As noted a while ago, jikes does not have a '-encoding' option on Windows. This patch fixes the build so that we only use this option where it is available. Tom Index: ChangeLog from Tom Tromey [EMAIL PROTECTED] * lib/Makefile.am (JAVAC): Use JIKESENCODING. * m4/acinclude.m4

Re: [cp-patches] [RFA/JDWP] ReferenceKey

2005-06-17 Thread Archie Cobbs
Keith Seitz wrote: Okay, here'e where the weirdness starts. The ID manager (not yet submitted) keeps a table which map objects to IDs. This is used to quickly lookup Objects to see if they have an ID associated with them already. The ReferenceKey class is a SoftReference class with some logic

Re: [cp-patches] [RFA/JDWP] ReferenceKey

2005-06-17 Thread Keith Seitz
On Fri, 2005-06-17 at 14:47 -0500, Archie Cobbs wrote: Coupla questions. Disclaimer: I haven't really been paying attention, so ignore me if these are stupid irrelevant.. Nothing is irrelevant: I'm a Java newbie. - Could java.util.WeakHashMap be used instead of writing your own? See

[cp-patches] FYI: A single value CORBA 1.4 interfaces.

2005-06-17 Thread Meskauskas Audrius
2005-06-07 Audrius Meskauskas [EMAIL PROTECTED] * org/omg/PortableServer/ID_ASSIGNMENT_POLICY_ID.java, org/omg/PortableServer/ID_UNIQUENESS_POLICY_ID.java, org/omg/PortableServer/IMPLICIT_ACTIVATION_POLICY_ID.java, org/omg/PortableServer/LIFESPAN_POLICY_ID.java,