[cp-patches] FYI: Hashtable fix for PR 25727

2006-01-10 Thread Jeroen Frijters
Hi, Committed. Regards, Jeroen 2006-01-09 Jeroen Frijters [EMAIL PROTECTED] PR classpath/25727 * java/util/Hashtable.java (contains): Call equals on existing value. (containsKey, get, put, remove): Call equals on existing key. (getEntry): Call equals

Re: [cp-patches] FYI: First class for javax.management.

2006-01-10 Thread Chris Burdess
Meskauskas Audrius wrote: /** * The attribute name. */ final String m_name; /** * The attribute value. */ final Object m_value; Do we really need all this m_* Hungarian notation business? We don't use this form (or indeed underscores at all) anywhere else in

[cp-patches] FYI: Make sure we have linenumber info with gcjx

2006-01-10 Thread Mark Wielaard
Hi, gcjx needs an explicit -g to generate linenumber info. This patch makes it so: 2006-01-10 Mark Wielaard [EMAIL PROTECTED] * lib/Makefile.am (GCJX): Add -g to get linenumber info. Committed, Mark --- lib/Makefile.am 3 Jan 2006 12:33:24 - 1.108 +++ lib/Makefile.am

[cp-patches] FYI: implemented rest of EventSetDescriptor - NOTE

2006-01-10 Thread Robert Schuster
Hi, for some unknown reasons this patch did not contain the getGetListenerMethod. I fix the ChangeLog to: 2006-01-09 Robert Schuster [EMAIL PROTECTED] * java/beans/EventSetDescriptor.java: Implemented the two 1.4 constructors. cya Robert Index:

[cp-patches] FYI: implemented last EventSetDescriptor method

2006-01-10 Thread Robert Schuster
Hi, this is the method I forgot in the last patch. 2006-01-10 Robert Schuster [EMAIL PROTECTED] * java/beans/EventSetDescriptor.java: (getGetListenerMethod): New method. cya Robert Index: java/beans/EventSetDescriptor.java

[cp-patches] FYI: javanet.c portability fix

2006-01-10 Thread Roman Kennke
Hi, I replaced two occurances of strerror() in javanet.c with the corresponding target native macro, in order to make this file compile on platforms that don't have strerror() (in this case, WindowsCE). 2006-01-10 Roman Kennke [EMAIL PROTECTED] * native/jni/java-net/javanet.c

[cp-patches] FYI: ArrayList fixlet

2006-01-10 Thread Roman Kennke
Hi, The java.util.ArrayList is specified to have a default capacity of 10, we had implemented 16 there. This patch fixes this. 2006-01-10 Roman Kennke [EMAIL PROTECTED] * java/util/ArrayList.java (DEFAULT_CAPACITY): Changed default capacity to 10, as specified. /Roman Index:

[cp-patches] FYI: SecurityManager API doc fix

2006-01-10 Thread Roman Kennke
Hi, In the java.lang.SecurityManager we import some AWT classes, only for some API docs references. I removed those imports and instead fully qualified those references. This was necessary, because we want to do AWT-less builds, and importing a class makes the compiler want this class present,

[cp-patches] FYI: reformatted EventSetDescriptor

2006-01-10 Thread Robert Schuster
Hi, I reformatted the EventSetDescriptor class, fixed its API doc a bit and corrected the copyright year. Yay, this class was last touched in 1998! 2006-01-10 Robert Schuster [EMAIL PROTECTED] * java/beans/EventSetDescriptor.java: Reformatted and fixed API docs. cya Robert

Re: [cp-patches] FYI: implemented rest of EventSetDescriptor

2006-01-10 Thread Mark Wielaard
Hi Robert, On Tue, 2006-01-10 at 00:35 +0100, Robert Schuster wrote: 2006-01-09 Robert Schuster [EMAIL PROTECTED] * java/beans/EventSetDescriptor.java: Implemented the two 1.4 constructors. (getGetListenerMethod): New method. Thanks, cool. A few minor formatting

[cp-patches] FYI: StringTokenizer fixlet

2006-01-10 Thread Roman Kennke
In the java.util.StringTokenizer we trigger an NPE if delim is null. The spec explicitly says, that we shouldn't do so, and Sun's impl doesn't. This patch fixes this. 2006-01-10 Roman Kennke [EMAIL PROTECTED] * java/util/StringTokenizer.java (StringTokenizer(String, String,

Re: [cp-patches] FYI: implemented rest of EventSetDescriptor

2006-01-10 Thread Robert Schuster
Hi Mark, something is wrong with the overal formatting of this class anyway. I'll fix this. cya Robert Mark Wielaard wrote: Hi Robert, On Tue, 2006-01-10 at 00:35 +0100, Robert Schuster wrote: 2006-01-09 Robert Schuster [EMAIL PROTECTED] * java/beans/EventSetDescriptor.java:

[cp-patches] FYI: ComponentUI indendation fixlet

2006-01-10 Thread Roman Kennke
I fixed a little indendation mistake in javax.swing.plaf.ComponentUI. 2006-01-10 Roman Kennke [EMAIL PROTECTED] * javax/swing/plaf/ComponentUI.java (update): Fixed indendation. /Roman Index: javax/swing/plaf/ComponentUI.java

[cp-patches] FYI: GdkGraphics2D NPE fix

2006-01-10 Thread Roman Kennke
I added a null check in the GdkGraphics2D constructor to avoid an NPE if the source GdkGraphics2D object has a null bg field. 2006-01-10 Roman Kennke [EMAIL PROTECTED] * gnu/java/awt/peer/gtk/GdkGraphics2D.java (GdkGraphics2D(GdkGraphics2D)): Added null check for the bg

[cp-patches] FYI: BasicSplitPaneDivider indendantion fixlet

2006-01-10 Thread Roman Kennke
This fixes two little indendantion mistakes in the BasicSplitPaneUI. 2006-01-10 Roman Kennke [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicSplitPaneDivider.java (MouseHandler.mousePressed): Fixed indendation. (MouseHandler.mouseDragged): Fixed indendation. /Roman

[cp-patches] FYI: API docs fix for JTabbedPane

2006-01-10 Thread Roman Kennke
I improved the API docs for JTabbedPane a little. 2006-01-10 Roman Kennke [EMAIL PROTECTED] * javax/swing/JTabbedPane.java: Cleared API docs a little. /Roman Index: javax/swing/JTabbedPane.java === RCS file:

[cp-patches] FYI: BasicListUI fixlet

2006-01-10 Thread Roman Kennke
Hi there, this makes the BasicListUI update its layout also when the list itself has been invalidated since the last update. 2006-01-10 Roman Kennke [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicListUI.java (maybeUpdateLayoutState): Also update the layout state, if the

[cp-patches] FYI: BasicListUI API doc fixlet

2006-01-10 Thread Roman Kennke
I added a @since to BasicListUI.playSound. 2006-01-10 Roman Kennke [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicLookAndFeel.java (playSound): Added @since 1.4 to the API docs. /Roman Index: javax/swing/plaf/basic/BasicLookAndFeel.java

[cp-patches] FYI: ViewportLayout fix

2006-01-10 Thread Roman Kennke
Hi there, This ViewportLayout fix makes Scrollable view components always have the viewport size, when they return true on getScrollableTracksViewportHeight() and ...Width(), independent of their preferred size. 2006-01-10 Roman Kennke [EMAIL PROTECTED] *

[cp-patches] FYI: RepaintManager fix

2006-01-10 Thread Roman Kennke
I fixed a condition in RepaintManager.validateInvalidComponents() to avoid an NPE. 2006-01-10 Roman Kennke [EMAIL PROTECTED] * javax/swing/RepaintManager.java (validateInvalidComponents): Fixed condition to avoid NPE. /Roman Index: javax/swing/RepaintManager.java

[cp-patches] FYI: Another ViewportLayout fix

2006-01-10 Thread Roman Kennke
I had to fix the condition in ViewportLayout.layoutContainer() again, in order to avoid a ClasscastException. 2006-01-10 Roman Kennke [EMAIL PROTECTED] * javax/swing/ViewportLayout.java (layoutContainer): Fixed condition, to avoid ClasscastException. /Roman Index:

[cp-patches] FYI: Wrap over the ChangeLog

2006-01-10 Thread Roman Kennke
Hi there, I moved all the ChangeLog entries of 2005 into ChangeLog-2005, as was done the years before. /Roman ___ Classpath-patches mailing list Classpath-patches@gnu.org http://lists.gnu.org/mailman/listinfo/classpath-patches

[cp-patches] FYI: ChangeLog-2005

2006-01-10 Thread Roman Kennke
I included the ChangeLog-2005 in the Makefile.am, so that it will be shipped in releases. 2006-01-10 Roman Kennke [EMAIL PROTECTED] * Makefile.am (EXTRA_DIST): Added ChangeLog-2004. * ChangeLog-2005: New File. /Roman Index: Makefile.am

Re: [cp-patches] FYI: First class for javax.management.

2006-01-10 Thread Meskauskas Audrius
There are very many various classes, methods and fields with names, containing underscores in the official org.omg namespace (see org.omg.PortableInterceptor.IORInterceptor_3_0Operations for instance). Hence we must use them anyway. I am not sure if the underscores are really bad for

[cp-patches] RFC: Hashtable cleanup

2006-01-10 Thread Roman Kennke
Hi there, I would like to propose the following patch that was written by my collegue Fridjof. Basically, it replaces the parameterized Iterator and Enumerator classes with normal classes for values/entries/keys. The EntryIterator and EntryEnumerator are just like the previous HashIterator and

Re: [cp-patches] installing logging.properties

2006-01-10 Thread Christian Thalinger
On Tue, Jan 10, 2006 at 04:47:41PM +0100, Mark Wielaard wrote: * liIf the system property codejava.util.logging.config.file/code * is not set, however, the contents of the URL * {gnu.classpath.home.url}/logging.properties are passed to * [EMAIL PROTECTED]

[cp-patches] RFC: gnu.regexp fix to allow ([(])

2006-01-10 Thread Ito Kazumitsu
This fixes the bug #22802. ChangeLog: 2006-01-10 Ito Kazumitsu [EMAIL PROTECTED] Fixes bug #22802 * gnu/regexp/RE.java(initialize): Fixed the parsing of character classes within a subexpression. Index: classpath/gnu/regexp/RE.java

Re: [cp-patches] FYI: StringTokenizer fixlet

2006-01-10 Thread Tom Tromey
Roman == Roman Kennke [EMAIL PROTECTED] writes: Roman In the java.util.StringTokenizer we trigger an NPE if delim is null. The Roman spec explicitly says, that we shouldn't do so, and Sun's impl Roman doesn't. This patch fixes this. I didn't look, but a mauve test for this would be great.

Re: [cp-patches] installing logging.properties

2006-01-10 Thread Mark Wielaard
Hi Christian, On Tue, 2006-01-10 at 16:56 +0100, Christian Thalinger wrote: On Tue, Jan 10, 2006 at 04:47:41PM +0100, Mark Wielaard wrote: * liIf the system property codejava.util.logging.config.file/code * is not set, however, the contents of the URL *

Re: [cp-patches] installing logging.properties

2006-01-10 Thread Christian Thalinger
On Tue, 2006-01-10 at 18:28 +0100, Mark Wielaard wrote: libgcj installs it as: propdir = $(libdir) $(INSTALL_DATA) $(srcdir)/java/util/logging/logging.properties $(DESTDIR)$(propdir)/logging.properties That seems a better place. But it looks like we have to update LogManager in that

Re: [cp-patches] FYI: Wrap over the ChangeLog

2006-01-10 Thread Mark Wielaard
Hi Roman, On Tue, 2006-01-10 at 16:09 +0100, Roman Kennke wrote: I moved all the ChangeLog entries of 2005 into ChangeLog-2005, as was done the years before. Thanks! It seems we have been almost twice as busy in 2005: ChangeLog-2004 666K (1545 entries ~= 4.2 commits/day) ChangeLog-2005 1.2M

Re: [cp-patches] installing logging.properties

2006-01-10 Thread Mark Wielaard
On Tue, 2006-01-10 at 19:00 +0100, Christian Thalinger wrote: On Tue, 2006-01-10 at 18:28 +0100, Mark Wielaard wrote: libgcj installs it as: propdir = $(libdir) $(INSTALL_DATA) $(srcdir)/java/util/logging/logging.properties $(DESTDIR)$(propdir)/logging.properties That seems a

Re: [cp-patches] RFC: gnu.regexp fix to allow ([(])

2006-01-10 Thread Tom Tromey
Ito == Ito Kazumitsu [EMAIL PROTECTED] writes: Ito ChangeLog: Ito 2006-01-10 Ito Kazumitsu [EMAIL PROTECTED] ItoFixes bug #22802 Ito* gnu/regexp/RE.java(initialize): Fixed the parsing of Itocharacter classes within a subexpression. I think it is awesome that you're fixing these

Re: [cp-patches] FYI: Define isnan explicitly in fdlibm

2006-01-10 Thread Christian Thalinger
On Sat, 2005-12-17 at 21:43 +0100, Guilhem Lavaux wrote: Hi, Here is a patch to define isnan explicitly as a macro if it is not already defined. At the same it removes the symbol renaming in namespace.h. Hi! As i merged the changes into CACAO, i noticed that this patch breaks some stuff on

RE: [cp-patches] RFC: Hashtable cleanup

2006-01-10 Thread Jeroen Frijters
Roman Kennke wrote: I would like to propose the following patch that was written by my collegue Fridjof. Basically, it replaces the parameterized Iterator and Enumerator classes with normal classes for values/entries/keys. Thank you! This is much better than before. Regards, Jeroen

[cp-testresults] FAIL: ecj built with native-ecj on Wed Jan 11 00:18:25 UTC 2006

2006-01-10 Thread cpdev
xargs: ../ecj-gcj-build/ecj: No such file or directory ___ Classpath-testresults mailing list Classpath-testresults@gnu.org http://lists.gnu.org/mailman/listinfo/classpath-testresults

[cp-testresults] FAIL: regressions for mauve-jamvm on Wed Jan 11 04:38:18 UTC 2006

2006-01-10 Thread cpdev
Baseline from: Tue Jan 10 21:03:00 UTC 2006 Regressions: FAIL: gnu.testlet.javax.swing.text.DefaultStyledDocument.ElementBuffer.ElementStructure4 (number 6) FAIL: gnu.testlet.javax.swing.text.DefaultStyledDocument.ElementBuffer.ElementStructure4 (number 8) FAIL:

[cp-testresults] FAIL: ecj built with gcj (native) on Wed Jan 11 04:03:52 UTC 2006

2006-01-10 Thread cpdev
/tmp/ccJuAm6K.o(.text+0x15860): In function `void org::eclipse::jdt::internal::compiler::batch::Main::outputClassFiles(org::eclipse::jdt::internal::compiler::CompilationResult*)': : undefined reference to `org::eclipse::jdt::internal::compiler::util::SuffixConstants::class$'

[cp-testresults] FAIL: ecj built with native-ecj on Wed Jan 11 04:05:15 UTC 2006

2006-01-10 Thread cpdev
xargs: ../ecj-gcj-build/ecj: No such file or directory ___ Classpath-testresults mailing list Classpath-testresults@gnu.org http://lists.gnu.org/mailman/listinfo/classpath-testresults

Re: gnu.xml.dom.DomText implements Text and NodeList.

2006-01-10 Thread Mark Wielaard
Hi Pedro, On Tue, 2006-01-10 at 04:31 -0400, Pedro Izecksohn wrote: We ask that people agree to the GNU Classpath Hackers requirements before granting CVS commit permissions. You can find them at: http://www.gnu.org/software/classpath/docs/hacking.html#SEC2 I'm submiting source code to

[Bug classpath/25727] Hashtable is not secure

2006-01-10 Thread cvs-commit at developer dot classpath dot org
--- Comment #4 from cvs-commit at developer dot classpath dot org 2006-01-10 08:33 --- Subject: Bug 25727 CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Jeroen Frijters [EMAIL PROTECTED]06/01/10 07:53:45 Modified files: .

Re: gnu.xml.dom.DomText implements Text and NodeList.

2006-01-10 Thread Chris Burdess
Pedro Izecksohn wrote: And maybe we can share one instance of the EmptyNodeList for the whole dom tree so if a tree contains lots of empty node list we only allocate one. I was thinking on this issue. The cast in getChildNode() isn't necessary since EmptyNodeList already is a NodeList.

Re: Assertion failure

2006-01-10 Thread Mark Wielaard
Hi, On Tue, 2006-01-10 at 01:38 +0100, Christian Thalinger wrote: On Mon, 2006-01-09 at 18:02 -0600, Archie Cobbs wrote: FYI, Just testing current CVS with JCVM and I'm also getting this assertion failure: jc: mprec.c:100: _Jv_Balloc: Assertion `(1 k) 32' failed. This is

Re: please test: XMLEncoder patch - version 2

2006-01-10 Thread Chris Burdess
Robert Schuster wrote: Btw: Currently the encoder relies on the StAX implementation. If someone decides to rip that out one has to provide an alternative gnu.java.beans.encoder.Writer implementation. It only relies on the StAX public interface, which is fine as that is not going anywhere.

Re: Assertion failure

2006-01-10 Thread Andrew Haley
Christian Thalinger writes: On Mon, 2006-01-09 at 18:02 -0600, Archie Cobbs wrote: FYI, Just testing current CVS with JCVM and I'm also getting this assertion failure: jc: mprec.c:100: _Jv_Balloc: Assertion `(1 k) 32' failed. This is on SuSE 10 on an x86 laptop

Re: Assertion failure

2006-01-10 Thread Mark Wielaard
On Tue, 2006-01-10 at 10:41 +0100, Mark Wielaard wrote: Hmmm. mprec originally came with fdlibm from libgcj and we regarded them as upstream, but they are now relying on us as upstream. It looks like the original mprec imported into libgcj actually through newlib

Re: Assertion failure

2006-01-10 Thread Mark Wielaard
Hi, On Tue, 2006-01-10 at 10:17 +, Andrew Haley wrote: Christian Thalinger writes: On Mon, 2006-01-09 at 18:02 -0600, Archie Cobbs wrote: Just testing current CVS with JCVM and I'm also getting this assertion failure: jc: mprec.c:100: _Jv_Balloc: Assertion `(1 k) 32'

Re: Assertion failure

2006-01-10 Thread Andrew Haley
Mark Wielaard writes: On Tue, 2006-01-10 at 10:41 +0100, Mark Wielaard wrote: Hmmm. mprec originally came with fdlibm from libgcj and we regarded them as upstream, but they are now relying on us as upstream. It looks like the original mprec imported into libgcj actually through newlib

Re: Assertion failure

2006-01-10 Thread Mark Wielaard
On Tue, 2006-01-10 at 11:49 +0100, Mark Wielaard wrote: BTW, does anybody know why we are not using the system strtod() when available? That seems the way to the quickest solution on most platforms. It seems to work with some simple tests for me. But I notice that there is no strtod_r(), just

Re: Assertion failure

2006-01-10 Thread Archie Cobbs
Mark Wielaard wrote: BTW, does anybody know why we are not using the system strtod() when available? That seems the way to the quickest solution on most platforms. It seems to work with some simple tests for me. But I notice that there is no strtod_r(), just strtod(). But I couldn't find a

Re: Assertion failure

2006-01-10 Thread Dalibor Topic
Mark Wielaard wrote: On Tue, 2006-01-10 at 11:49 +0100, Mark Wielaard wrote: BTW, does anybody know why we are not using the system strtod() when available? That seems the way to the quickest solution on most platforms. It seems to work with some simple tests for me. But I notice that there is

Generics Branch Merge Announcement: 2005/11/27 - 2006/01/09

2006-01-10 Thread Andrew John Hughes
Hi all, All patches from 2005/11/27 to 2006/01/09 to HEAD have been merged to the generics branch. Again, I'm astounded by how much goes through between these merge runs... Keep up the good work! :) -- Andrew :-) Please avoid sending me Microsoft Office (e.g. Word, PowerPoint) attachments. See

Re: Assertion failure

2006-01-10 Thread Archie Cobbs
Archie Cobbs wrote: Mark Wielaard wrote: BTW, does anybody know why we are not using the system strtod() when available? That seems the way to the quickest solution on most platforms. It seems to work with some simple tests for me. But I notice that there is no strtod_r(), just strtod(). But I

Re: Assertion failure

2006-01-10 Thread Mark Wielaard
Hi Archie, On Tue, 2006-01-10 at 11:59 -0600, Archie Cobbs wrote: In any case, we probably need to fix this before 0.20, or at least disable the assertion (i.e., revert to the previous status quo). Agreed. I am still hoping someone has a good analysis of the issue, or wants to upgrade our

SecurityManager troubles

2006-01-10 Thread Guilhem Lavaux
Hi, I have stumbled across a bug probably shared by all VMs using GNU Classpath. In Apache Ant a SecurityManager is installed to be able to execute java application without forking the VM. Thanks to the SM exiting a VM is forbidden and so ant is protected from the applications using

Re: gnu.xml.dom.DomText implements Text and NodeList.

2006-01-10 Thread Pedro Izecksohn
Em Ter 10 Jan 2006 04:50, Chris Burdess escreveu: I would prefer: final class EmptyNodeList implements NodeList { static final EmptyNodeList instance = new EmptyNodeList(); public final int getLength() {return 0;} public final Node item(int index) {return null;} } That way:

qt-peer question

2006-01-10 Thread yovn
Hi,all I am new here.i see that the classpath-0.19 use QT4 for qt-peer, but my machine have QT3 only,then how can i port the qt-peer use QT3? thanks!!! -yovn ___ Classpath mailing list Classpath@gnu.org

Re: qt-peer question

2006-01-10 Thread Dalibor Topic
yovn wrote: Hi,all I am new here.i see that the classpath-0.19 use QT4 for qt-peer, but my machine have QT3 only,then how can i port the qt-peer use QT3? I believe the easiest thing to do is to install Qt4 locally into its own directory. That's the setup I use for development on Ubuntu.

RE: SecurityManager troubles

2006-01-10 Thread Jeroen Frijters
Guilhem Lavaux wrote: I have stumbled across a bug probably shared by all VMs using GNU Classpath. In Apache Ant a SecurityManager is installed to be able to execute java application without forking the VM. Thanks to the SM exiting a VM is forbidden and so ant is protected from the

[commit-cp] classpath ./ChangeLog java/util/Hashtable.java

2006-01-10 Thread Jeroen Frijters
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Jeroen Frijters [EMAIL PROTECTED] 06/01/10 07:53:45 Modified files: . : ChangeLog java/util : Hashtable.java Log message: 2006-01-09 Jeroen Frijters

[commit-cp] classpath ChangeLog

2006-01-10 Thread Jeroen Frijters
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Jeroen Frijters [EMAIL PROTECTED] 06/01/10 07:55:38 Modified files: . : ChangeLog Log message: Fixed the date on my change log entries. CVSWeb URLs:

[commit-cp] classpath java/beans/EventSetDescriptor.java ./...

2006-01-10 Thread Robert Schuster
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Robert Schuster [EMAIL PROTECTED] 06/01/10 12:21:22 Modified files: java/beans : EventSetDescriptor.java . : ChangeLog Log message: 2006-01-10 Robert

[commit-cp] classpath ./ChangeLog gnu/java/awt/peer/gtk/Gdk...

2006-01-10 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/10 12:34:52 Modified files: . : ChangeLog gnu/java/awt/peer/gtk: GdkGraphics2D.java Log message: 2006-01-10 Roman

[commit-cp] classpath ./ChangeLog lib/Makefile.am

2006-01-10 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Mark Wielaard [EMAIL PROTECTED] 06/01/10 10:39:54 Modified files: . : ChangeLog lib: Makefile.am Log message: * lib/Makefile.am (GCJX): Add -g to

[commit-cp] classpath ./ChangeLog javax/swing/JViewport.java

2006-01-10 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/10 13:03:22 Modified files: . : ChangeLog javax/swing: JViewport.java Log message: 2006-01-10 Roman Kennke [EMAIL

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

2006-01-10 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/10 13:16:14 Modified files: javax/swing/plaf/basic: BasicLookAndFeel.java . : ChangeLog Log message: 2006-01-10 Roman

[commit-cp] classpath javax/swing/plaf/basic/BasicListUI.ja...

2006-01-10 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/10 13:13:48 Modified files: javax/swing/plaf/basic: BasicListUI.java . : ChangeLog Log message: 2006-01-10 Roman

[commit-cp] classpath java/util/StringTokenizer.java ./Chan...

2006-01-10 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/10 12:57:41 Modified files: java/util : StringTokenizer.java . : ChangeLog Log message: 2006-01-10 Roman Kennke

[commit-cp] classpath ./ChangeLog java/lang/SecurityManager...

2006-01-10 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/10 12:18:09 Modified files: . : ChangeLog java/lang : SecurityManager.java Log message: 2006-01-10 Roman Kennke

[commit-cp] classpath javax/swing/ViewportLayout.java ./Cha...

2006-01-10 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/10 13:38:59 Modified files: javax/swing: ViewportLayout.java . : ChangeLog Log message: 2006-01-10 Roman Kennke

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

2006-01-10 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/10 13:09:24 Modified files: . : ChangeLog javax/swing: ViewportLayout.java Log message: 2006-01-10 Roman Kennke

[commit-cp] classpath ./ChangeLog javax/swing/JTabbedPane.java

2006-01-10 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/10 13:00:51 Modified files: . : ChangeLog javax/swing: JTabbedPane.java Log message: 2006-01-10 Roman Kennke

[commit-cp] classpath javax/swing/plaf/ComponentUI.java ./C...

2006-01-10 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/10 13:11:42 Modified files: javax/swing/plaf: ComponentUI.java . : ChangeLog Log message: 2006-01-10 Roman Kennke

[commit-cp] classpath ChangeLog ChangeLog-2005

2006-01-10 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/10 15:08:33 Modified files: . : ChangeLog Added files: . : ChangeLog-2005 Log message: Wrap over ChangeLog