[cp-patches] FYI: small fix for TableModelEvent constructor

2005-07-01 Thread David Gilbert
I committed this small patch to fix a couple of Mauve tests: 2005-07-01 David Gilbert [EMAIL PROTECTED] * javax/swing/event/TableModelEvent.java: (TableModelEvent(TableModel): set lastRowIndex to Integer.MAX_VALUE. Regards, Dave Gilbert Index:

[cp-patches] FYI: Made some components opaque

2005-07-01 Thread Roman Kennke
I noticed that several components that should be opaque (they are in the JDK), are not flagged as beeing opaque in Classpath. I fixed this with the attached patch. At the moment this only affects the drawing in that the opaque flag decides if the ComponentUI draws the components background or not.

[cp-patches] FYI: JLayeredPane fix

2005-07-01 Thread Roman Kennke
The attached patch fixes JLayeredPane.getLayer(). It now searches through the components parents first to find the component that is actually contained in the JLayeredPane. Otherwise we would get IllegalArgumentExceptions for all components that are only indirectly contained in a JLayeredPane.

[cp-patches] FYI: API doc updates for java.awt.image.DataBufferXXX classes

2005-07-01 Thread David Gilbert
I committed this patch to update the API doc descriptions for the DataBuffer classes. I also removed a few unnecessary casts that Eclipse highlighted. 2005-07-01 David Gilbert [EMAIL PROTECTED] * java/awt/image/DataBuffer.java: fixed API doc typos; *

[cp-patches] FYI: Implemented an ObjectPool

2005-07-01 Thread Roman Kennke
I implemented and added an ObjectPool class. This should help improve performance in Swing (and other areas). In Swing we make heavy use of Point Dimension and Rectangle. Usually these objects are created to wrap some integer values and are discarded quickly. This would create overload for

[cp-patches] Re: [commit-cp] classpath ./ChangeLog gnu/xml/dom/DomDocument.j...

2005-07-01 Thread Mark Wielaard
Hi Chris, On Thu, 2005-06-30 at 18:09 -0400, Chris Burdess wrote: CVSROOT: /cvsroot/classpath Module name: classpath Branch: Changes by: Chris Burdess [EMAIL PROTECTED] 05/06/30 22:09:07 Reading the main mailinglist I see this wasn't a mistaken commit. But I didn't see a

Re: [cp-patches] Needs Approval: Patch - JList multiple selection including Shift-Click

2005-07-01 Thread Tom Tromey
Roman == Roman Kennke [EMAIL PROTECTED] writes: Roman - No need to make every field private. This could impact performance in Roman some cases (like when inner classes access the private fields of Roman enclosing classes, the compiler has to generate accessor methods for Roman them). Ordinarily

[cp-patches] Absolute URL parsing bug

2005-07-01 Thread Andrew Haley
This URL is an absolute URL because its path begins with a /: jar:file:/usr/src/redhat/BUILD/jonas-4.3.3/jonas/output/JONAS_4_3_3/examples/webservices/beans/ws/temp/ejbjars/ws.jar!/META-INF/wsdl/ssbEndpoint.wsdl [ An absolute file URL can look like: absoluteURI = file : abs_path abs_path

[cp-patches] FYI: Removed ObjectPool

2005-07-01 Thread Roman Kennke
Hi, I did some simple benchmarks with the proposed ObjectPool thing. These show that there is really not much gain from it, at least in a real world environment (where the number of requested objects != number of returned objects). It can be somewhat expected that the speed performance actually

[cp-patches] Proposed patch: JTable and DefaultTableColumnModel

2005-07-01 Thread David Gilbert
This patch implements the isCellEditable() method in JTable and fixes a problem I noticed in DefaultTableColumnModel's moveColumn() method while I was writing the Mauve tests for the new method: 2005-07-01 David Gilbert [EMAIL PROTECTED] * javax/swing/JTable.java

[cp-patches] Patch: RFA: fix gjdoc loop

2005-07-01 Thread Tom Tromey
This patch fixes a gjdoc bug we ran into while building Eclipse 3.1. I'm not checking it in yet as I am not a gjdoc expert; I'd rather someone else look it over first. Consider this code: package z; /** hi jane */ public class base extends der {} package z; import p.base; /** hi bob */ public

[cp-patches] FYI: RenderingHints API doc updates

2005-07-01 Thread David Gilbert
I committed this patch to update some API docs: 2005-07-01 David Gilbert [EMAIL PROTECTED] * java/awt/RenderingHints.java: API doc updates. Regards, Dave Gilbert Index: java/awt/RenderingHints.java === RCS file:

[cp-patches] FYI: API doc fixes for UndoableEditSupport and UndoManager

2005-07-01 Thread David Gilbert
I committed this patch to fix some API doc links: 2005-07-01 David Gilbert [EMAIL PROTECTED] * javax/swing/undo/UndoManager.java: fixed API doc links, * javax/swing/undo/UndoableEditSupport.java: likewise. Regards, Dave Gilbert Index: javax/swing/undo/UndoManager.java

[cp-patches] Re: Absolute URL parsing bug

2005-07-01 Thread Per Bothner
Andrew Haley wrote: This URL is an absolute URL because its path begins with a /: jar:file:/usr/src/redhat/BUILD/jonas-4.3.3/jonas/output/JONAS_4_3_3/examples/webservices/beans/ws/temp/ejbjars/ws.jar!/META-INF/wsdl/ssbEndpoint.wsdl [ An absolute file URL can look like: absoluteURI = file :

Re: [cp-patches] FYI: Implemented an ObjectPool

2005-07-01 Thread Robert Schuster
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ok, I have seen this class was removed now. So forget about this mail :) cu Robert Robert Schuster wrote: Hi, shouldn't the pooling class use a WeakHashMap? And then I want to admit that the Apidoc should really explain when to use a pooled

Eclipse broken with 0.16

2005-07-01 Thread Jeroen Frijters
Hi Chris, I just tried running Eclipse 3.0 and 3.1m5 and both crash when exiting, due to a problem with persisting its settings: java.lang.NullPointerException at gnu.xml.dom.DomNamedNodeMap.setNamedItem (DomNamedNodeMap.java:209) at gnu.xml.dom.DomNamedNodeMap.setNamedItemNS

Re: Eclipse broken with 0.16

2005-07-01 Thread Chris Burdess
Jeroen Frijters wrote: I just tried running Eclipse 3.0 and 3.1m5 and both crash when exiting, due to a problem with persisting its settings: java.lang.NullPointerException at gnu.xml.dom.DomNamedNodeMap.setNamedItem (DomNamedNodeMap.java:209) at

JNode release 0.2.1

2005-07-01 Thread Martin Husted Hartvig
The JNode team is proud to announce the release of the version 0.2.1 of the JNode.org operating system. JNode.org is an open source java OS written fully in java (with a very small assembler nano-kernel). This release focused on improving the GUI handling and reducing the memory usages.

RE: Eclipse broken with 0.16

2005-07-01 Thread Jeroen Frijters
Chris Burdess wrote: Jeroen Frijters wrote: I just tried running Eclipse 3.0 and 3.1m5 and both crash when exiting, due to a problem with persisting its settings: java.lang.NullPointerException at gnu.xml.dom.DomNamedNodeMap.setNamedItem (DomNamedNodeMap.java:209) at

RE: Eclipse broken with 0.16

2005-07-01 Thread Mark Wielaard
Hi, On Fri, 2005-07-01 at 12:17 +0200, Jeroen Frijters wrote: Chris Burdess wrote: Jeroen Frijters wrote: I just tried running Eclipse 3.0 and 3.1m5 and both crash when exiting, due to a problem with persisting its settings: Can you please take a look at this? Could you

GNU Classpath 0.16 Harmony! released

2005-07-01 Thread Mark Wielaard
GNU Classpath 0.16 Harmony! released. We are pleased to announce a new developer snapshot of GNU Classpath. GNU Classpath, essential libraries for java, is a project to create free core class libraries for use with runtimes, compilers and tools for the java programming language. The GNU

New volunteer needing task

2005-07-01 Thread Dimitri Koussa
Hi, I am new to GNU Classpath and I would like to contribute. I would appreciate any help with finding an appropriate task. As part of an individual student project at university, I have chosen to work on GNU Classpath. (Any comments on whether this is a bad idea?) I have to hand in a

Re: New volunteer needing task

2005-07-01 Thread David Gilbert
Hi Dimitri, Someone submitted some Mauve tests for javax.imageio that checks the PNG image test suite: http://sources.redhat.com/ml/mauve-patches/2005/msg00052.html They haven't been integrated into Mauve yet, but probably should be. GNU Classpath doesn't have an imageio plugin to read/write

Re: Eclipse broken with 0.16

2005-07-01 Thread Tom Tromey
Mark == Mark Wielaard [EMAIL PROTECTED] writes: Mark Sigh. My apologies. I had tested against 3.1-final and I hadn't seen Mark this failure. Chris said he had some extra fixes, but I didn't wait for Mark them for the release since I thought they were only for the transform Mark part. Seems I

Re: Eclipse broken with 0.16

2005-07-01 Thread Roman Kennke
Am Freitag, den 01.07.2005, 11:34 -0600 schrieb Tom Tromey: Mark == Mark Wielaard [EMAIL PROTECTED] writes: Mark Sigh. My apologies. I had tested against 3.1-final and I hadn't seen Mark this failure. Chris said he had some extra fixes, but I didn't wait for Mark them for the release since

Re: Eclipse broken with 0.16

2005-07-01 Thread Chris Burdess
Tom Tromey wrote: Mark Sigh. My apologies. I had tested against 3.1-final and I hadn't seen Mark this failure. Chris said he had some extra fixes, but I didn't wait for Mark them for the release since I thought they were only for the transform Mark part. Seems I should have. Mark

Re: Eclipse broken with 0.16

2005-07-01 Thread Mark Wielaard
Hi, On Fri, 2005-07-01 at 11:34 -0600, Tom Tromey wrote: Mark == Mark Wielaard [EMAIL PROTECTED] writes: Mark Sigh. My apologies. I had tested against 3.1-final and I hadn't seen Mark this failure. Chris said he had some extra fixes, but I didn't wait for Mark them for the release since I

Re: Eclipse broken with 0.16

2005-07-01 Thread David P Grove
For what it's worth, given this bug Jikes RVM is likely to stick at 0.15 until either 0.16.1 or 0.17 comes out. --dave ___ Classpath mailing list Classpath@gnu.org http://lists.gnu.org/mailman/listinfo/classpath

CORBA task

2005-07-01 Thread Meskauskas Audrius
Hi Dimitri, The most important CORBA task now is an IDL to java compiler, we do not have it at the moment. The compiler can be written using javacc generated parser in the input (the grammar file is already available) and the Apache Velocity templates in the output (I can give some templates

Re: Eclipse broken with 0.16

2005-07-01 Thread Thomas Zander
On Fri, Jul 01, 2005 at 04:01:09PM -0400, David P Grove wrote: For what it's worth, given this bug Jikes RVM is likely to stick at 0.15 until either 0.16.1 or 0.17 comes out. Assuming the 0.16 is tagged; what about branching it in cvs and backporting the patch that solves this for projects

[commit-cp] classpath ./ChangeLog javax/swing/event/TableMo...

2005-07-01 Thread David Gilbert
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 05/07/01 08:45:07 Modified files: . : ChangeLog javax/swing/event: TableModelEvent.java Log message: 2005-07-01 David

[commit-cp] classpath ./ChangeLog java/awt/image/DataBuffer...

2005-07-01 Thread David Gilbert
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 05/07/01 10:33:31 Modified files: . : ChangeLog java/awt/image : DataBuffer.java DataBufferByte.java

[commit-cp] classpath ./ChangeLog javax/swing/plaf/basic/Ba...

2005-07-01 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]05/07/01 10:14:19 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicMenuBarUI.java

[commit-cp] classpath ./ChangeLog javax/swing/JLayeredPane....

2005-07-01 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]05/07/01 10:35:59 Modified files: . : ChangeLog javax/swing: JLayeredPane.java Log message: 2005-07-01 Roman Kennke

[commit-cp] classpath ./ChangeLog gnu/classpath/jdwp/util/J...

2005-07-01 Thread Aaron Luchko
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Aaron Luchko [EMAIL PROTECTED]05/06/30 23:03:48 Modified files: . : ChangeLog Added files: gnu/classpath/jdwp/util: JdwpString.java Log message: *

[commit-cp] classpath ./ChangeLog gnu/classpath/ObjectPool....

2005-07-01 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]05/07/01 10:46:14 Modified files: . : ChangeLog Added files: gnu/classpath : ObjectPool.java Log message: 2005-07-01 Roman

[commit-cp] classpath ./ChangeLog javax/swing/table/JTableH...

2005-07-01 Thread David Gilbert
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 05/07/01 11:25:04 Modified files: . : ChangeLog javax/swing/table: JTableHeader.java TableModel.java

[commit-cp] classpath ./ChangeLog gnu/classpath/ObjectPool....

2005-07-01 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]05/07/01 13:07:02 Modified files: . : ChangeLog gnu/classpath : ObjectPool.java Log message: 2005-07-01 Roman Kennke

[commit-cp] classpath ./ChangeLog gnu/xml/dom/DomNode.java ...

2005-07-01 Thread Chris Burdess
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Chris Burdess [EMAIL PROTECTED] 05/07/01 15:34:39 Modified files: . : ChangeLog gnu/xml/dom: DomNode.java gnu/xml/dom/html2: DomHTMLCollection.java

[commit-cp] classpath ./ChangeLog gnu/classpath/ObjectPool....

2005-07-01 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]05/07/01 16:53:52 Modified files: . : ChangeLog Removed files: gnu/classpath : ObjectPool.java Log message: 2005-07-01

[commit-cp] classpath ./ChangeLog doc/www.gnu.org/newsitems...

2005-07-01 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Mark Wielaard [EMAIL PROTECTED] 05/07/01 17:10:05 Modified files: . : ChangeLog doc/www.gnu.org: newsitems.txt doc/www.gnu.org/downloads: downloads.wml Added

[commit-cp] classpath ./ChangeLog java/awt/RenderingHints.java

2005-07-01 Thread David Gilbert
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 05/07/01 20:44:55 Modified files: . : ChangeLog java/awt : RenderingHints.java Log message: 2005-07-01 David Gilbert

[commit-cp] classpath ./ChangeLog javax/swing/undo/UndoMana...

2005-07-01 Thread David Gilbert
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 05/07/01 20:57:47 Modified files: . : ChangeLog javax/swing/undo: UndoManager.java UndoableEditSupport.java Log message: