[cp-patches] FYI: BasicSliderUI keyboard bindings

2006-04-17 Thread David Gilbert
This patch (committed) adds keyboard bindings for the JSlider component. I followed the description given here: http://java.sun.com/products/jfc/tsc/special_report/kestrel/keybindings.html I also modified the scrollByBlock() and scrollByUnit() methods to behave more like the reference

[cp-patches] FYI: Stubs marked in javax.swing.plaf.basic

2006-04-17 Thread David Gilbert
This patch (committed) marks some stub methods in the javax.swing.plaf.basic.* package: 2006-04-17 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicComboBoxUI.java: (installKeyboardActions): Marked as stub, (uninstallKeyboardActions): Likewise, *

Re: [cp-patches] FYI: gnu.xml.dom.html2.* fixes and additions

2006-04-17 Thread Chris Burdess
Lillian Angel wrote: More bug fixes for the parser and related classes. 2006-04-12 Lillian Angel [EMAIL PROTECTED] * gnu/xml/dom/DomDocument.java (checkNCName): Removed unneeded part of check. Hi Lillian, --- gnu/xml/dom/DomDocument.java12 Jan 2006 16:35:52 -

[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. *

[cp-patches] FYI: fix for libtool warning

2006-04-17 Thread Dalibor Topic
Hi all, the attached patch fixes two libtool warnings. It does not make sense to use versioning information for convenience libraries, so I've added a new substitution for LDFLAGS for convenience libraries. cheers, dalibor topic 2006-04-15 Dalibor Topic [EMAIL PROTECTED] *

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

2006-04-17 Thread Jeroen Frijters
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/ClassLoader.java (getResources): Not final anymore in 1.5. *

[cp-patches] FYI: Implement java.lang.Iterable in java.util.Collection

2006-04-17 Thread Jeroen Frijters
Hi, Committed. Regards, Jeroen 2006-04-17 Jeroen Frijters [EMAIL PROTECTED] * java/util/Collection.java: Implemented java.lang.Iterable. Index: java/util/Collection.java === RCS file:

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/ClassLoader.java

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

2006-04-17 Thread Andrew John Hughes
I'm committing the attached patch to add the VM layer of the recent java.lang.instrument addition. This doesn't add the call in java.lang.ClassLoader which invokes it, so it shouldn't cause any effect on VMs as yet. IN A WEEK'S TIME, I plan to add this too... Changelog: 2006-04-17 Andrew

[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

Re: [cp-patches] FYI: local sockets

2006-04-17 Thread Tom Tromey
Casey == Casey Marshall [EMAIL PROTECTED] writes: Casey If nothing else, so I can verify that it is portable enough that I'm Casey not breaking lots of peoples' builds just by including it. The standard approach would be to do feature checks in configure (e.g., for AF_UNIX, etc), and then have

Re: [cp-patches] FYI: local sockets

2006-04-17 Thread Casey Marshall
On Apr 17, 2006, at 10:40 AM, Tom Tromey wrote: Casey == Casey Marshall [EMAIL PROTECTED] writes: Casey If nothing else, so I can verify that it is portable enough that I'm Casey not breaking lots of peoples' builds just by including it. The standard approach would be to do feature checks

[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) attachments. See

[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) attachments. See

[cp-patches] FYI: AccessibleJToolBar updates

2006-04-17 Thread David Gilbert
This patch (committed) implements the stub method getAccessibleStateSet() by simply calling super.getAccessibleStateSet(). I ran some tests against the reference implementation, but none of the JToolBar specific attributes seem to affect the AccessibleStateSet. I also updated some API docs