[cp-patches] FYI: API doc fixes for java.awt.Font

2005-06-29 Thread David Gilbert
I committed this patch to fix some API doc links in java.awt.Font: 2005-06-29 David Gilbert [EMAIL PROTECTED] * java/awt/Font.java: fixed API doc links. Regards, Dave Gilbert Index: java/awt/Font.java === RCS file:

[cp-patches] FYI: added package descriptions for javax.swing.* API docs

2005-06-29 Thread David Gilbert
I committed this patch to add package descriptions for the API docs in most Swing packages: 2005-06-29 David Gilbert [EMAIL PROTECTED] * javax/swing/package.html: added package description, * javax/swing/border/package.html: likewise, *

Re: [cp-patches] FYI: Fix for BoxLayout

2005-06-29 Thread Roman Kennke
Hi, Tom Tromey wrote: Roman + public static Component[] getVisibleChildren(Container c) Roman + { Roman +Component[] children = c.getComponents(); Roman +Vector visible = new Vector(); Roman +for (int i = 0; i children.length; i++) Roman + if (children[i].isVisible()) Roman

[cp-patches] FYI: API docs updated for javax.swing.event.TableModelEvent

2005-06-29 Thread David Gilbert
I committed this patch to add/update the API docs for the TableModelEvent class: 2005-06-29 David Gilbert [EMAIL PROTECTED] * javax/swing/event/TableModelEvent.java: updated API docs all over. Regards, Dave Gilbert Index: javax/swing/event/TableModelEvent.java

[cp-patches] The version numbers

2005-06-29 Thread Meskauskas Audrius
Roman Kennke wrote You often mention version numbers like 1.2 and 1.3. This question may be naive, but do they refer to JDK version numbers or to CORBA spec version numbers? When speaking about implemented/missing CORBA features, I always use JDK version numbers. If I need to refer some

[cp-patches] The CORBA status

2005-06-29 Thread Meskauskas Audrius
Another question: Do you 'only' implement the CORBA framework? Or do you work on a complete CORBA implementation? We work on the complete CORBA implementation. If the latter, how far is it? The CORBA part, supported by Sun's JDK API 1.3, should work and, if needed, talk with another CORBA,

[cp-patches] RFC: java.awt.DefaultKeyboardFocusManager fix

2005-06-29 Thread Jeroen Frijters
Hi, Can someone who is more up to speed with AWT please take a look at the attached patch? While running some AWT code I got a ClassCastException in this code and while I didn't quite understand the point of the code (or why it failed), it looked to me as if the logic was wrong. It tries to find

[cp-patches] FYI: BasicLabelUI fixlet

2005-06-29 Thread Roman Kennke
It seems that BasicLabelUI must not set the border of JLabel, although there is an entry for that in BasicLookAndFeels' UIDefaults. At least I have an application here that shows strange effects with JLabel border set by default. 2005-06-29 Roman Kennke [EMAIL PROTECTED] *

[cp-patches] finite() for fdlibm

2005-06-29 Thread Christian Thalinger
Hi! Since there are some finite() calls in classpath's native code, we should also provide a implementation. This one is taken and adapted from the current file available from http://www.netlib.org/fdlibm/. TWISTI 2005-07-29 Christian Thalinger [EMAIL PROTECTED] *

Re: [cp-patches] finite() for fdlibm

2005-06-29 Thread Dalibor Topic
Christian Thalinger wrote: Hi! Since there are some finite() calls in classpath's native code, we should also provide a implementation. This one is taken and adapted from the current file available from http://www.netlib.org/fdlibm/. sounds good to me. cheers, dalibor topic

Re: [cp-patches] RFC: java.awt.DefaultKeyboardFocusManager fix

2005-06-29 Thread Thomas Fitzsimmons
On Wed, 2005-06-29 at 15:14 +0200, Jeroen Frijters wrote: Hi, Can someone who is more up to speed with AWT please take a look at the attached patch? While running some AWT code I got a ClassCastException in this code and while I didn't quite understand the point of the code (or why it

[cp-patches] [RFA/JDWP] StringReferenceCommandSet.java

2005-06-29 Thread Aaron Luchko
Okay, this is the first implementation of a CommandSet. http://java.sun.com/j2se/1.5.0/docs/guide/jpda/jdwp/jdwp-protocol.html#JDWP_StringReference All the CommandSets will end up following this pattern. Each command in the command set will be implemented with a method named executeCommand. In

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

2005-06-29 Thread Anthony Balkissoon
This patch improves JList's multiple selection capabilities, most notably by adding shift-click abilities. Patch is attached. Patch is pending approval. 2005-06-29 Anthony Balkissoon [EMAIL PROTECTED] * javax/swing/DefaultListSelectionModel.java: (addSelectionInterval):

Re: [cp-patches] FYI: Fix for BoxLayout

2005-06-29 Thread Tom Tromey
Roman == Roman Kennke [EMAIL PROTECTED] writes: This means multiple allocations per layout. Roman I could easily optimize this. I would have to return an implementation Roman of Collection (or List, for correctness of semantics) that wraps the Roman Component[] returned by getComponents() and

RE: [cp-patches] RFC: java.awt.DefaultKeyboardFocusManager fix

2005-06-29 Thread Jeroen Frijters
Thomas Fitzsimmons wrote: On Wed, 2005-06-29 at 15:14 +0200, Jeroen Frijters wrote: Hi, Can someone who is more up to speed with AWT please take a look at the attached patch? While running some AWT code I got a ClassCastException in this code and while I didn't quite understand the

Re: [cp-patches] finite() for fdlibm

2005-06-29 Thread Tom Tromey
Christian == Christian Thalinger [EMAIL PROTECTED] writes: Christian Since there are some finite() calls in classpath's native Christian code, we should also provide a implementation. This one is Christian taken and adapted from the current file available from Christian

Re: [cp-patches] [RFA/JDWP] Signature.java

2005-06-29 Thread Tom Tromey
Aaron == Aaron Luchko [EMAIL PROTECTED] writes: Aaron This class adds support for reading and writing the string type in the Aaron JDWP spec http://java.sun.com/j2se/1.5.0/docs/guide/jpda/jdwp-spec.html Looks good, please check it in. Aaron +os.writeInt(strBytes.length); Sad, since

[cp-patches] Approval Needed: Patch: JTree related class' implementations

2005-06-29 Thread Lillian Angel
Please disregard the last email, this is the updated patch that needs to be approved. Here is a new patch for these classes. I implemented it so the user can select paths/rows in the JTree. But still, but visual testing you cannot see this very well. - Patch Attached. * javax/swing/JTree.java:

Re: [cp-patches] FYI: JComponent fix

2005-06-29 Thread Robert Schuster
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi. I have a question/suggestion to this piece of code: protected void paintComponent(Graphics g) { if (ui != null) - ui.update(g, this); + { +Graphics g2 = g; +if (!(g instanceof Graphics2D)) +