On Sun, 2005-08-14 at 08:30 +0200, Jeroen Frijters wrote:
> Hi Tom,
>
> Why are you checking this into the generics branch? I was under the
> impression that 1.5 functionality could also be applied to the main
> branch, as long as it doesn't require any 1.5 language features.
>
> Regards,
> Jeroe
On Tue, 2005-09-06 at 21:53 +0100, Paul Jenner wrote:
> Hi Roman.
>
> On Tue, 2005-09-06 at 22:41 +0200, Roman Kennke wrote:
> > I re-enabled some accessibility things in javax.swing that have been
> > disabled due to a compiler bug in gcj < 4
> >
> > 2005-09-06 Roman Kennke <[EMAIL PROTECTED]>
I'm committing the attached patch, which fixes the problem described in:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=310520
(for JamVM at least, the Kaffe problem seems to be something else)
Changelog:
2005-09-12 Andrew John Hughes <[EMAIL PROTECTED]>
On Mon, 2005-09-12 at 22:33 -0700, Casey Marshall wrote:
> Hi,
>
> Attached is a patch to implement most of the javax.net.ssl methods
> and classes introduced in J2SE 1.5.
>
Great.
> This isn't complete, partly due to missing classes elsewhere
> (java.security.KeyStore.Builder) and due to t
I'm committing the attached patch which fixes a few remaining cases of the
wrong address within the GPL license.
2005-09-21 Andrew John Hughes <[EMAIL PROTECTED]>
* gnu/classpath/ByteArray.java,
* gnu/javax/crypto/DiffieHellmanImpl.java,
* gnu/j
I'm committing the attached patch to fix the license
address in the new generics files.
Changelog:
2005-09-21 Andrew John Hughes <[EMAIL PROTECTED]>
* gnu/classpath/ByteArray.java,
* gnu/classpath/ObjectPool.java,
* gnu/javax/crypto/DiffieHellm
I'm committing the attached patch to merge another of Tom's
additions to the generics branch back to HEAD.
Changelog:
2004-10-09 Tom Tromey <[EMAIL PROTECTED]>
* java/lang/ClassLoader.java
(defineClass(String,ByteBuffer,ProtectionDomain)): New method.
--
Andrew :-)
Please a
I'm committing the attached patch, which fixes a number of
generics-related problems highlighted by the JAPI CVS runs.
Changelog:
2005-09-28 Andrew John Hughes <[EMAIL PROTECTED]>
* gnu/java/awt/peer/qt/QtGraphics.java:
(getRenderingHints()): Create a clone
I'm committing the attached patch to fix a few methods and fields that lack
generic information.
Changelog:
2005-10-12 Andrew John Hughes <[EMAIL PROTECTED]>
* java/awt/datatransfer/DataFlavor.java:
(DataFlavor(Class,String,String): Genericized.
* j
I'm committing the attached patch to fix more typing changes due
to the 1.5 language additions.
Changelog:
2005-10-16 Andrew John Hughes <[EMAIL PROTECTED]>
* java/awt/image/BufferedImage.java:
(getSources()): Genericized.
* java/awt/image/Image
I'm committing the attached patch to add XML property output.
2005-10-17 Andrew John Hughes <[EMAIL PROTECTED]>
* java/util/Properties.java:
(storeToXML(OutputStream,String)): Implemented.
(storeToXml(OutputStream,String,String)): Likewise.
--
Andrew :-)
P
on this shortly. The patch does work, with a input properties file
hacked to use a locally modified version of the DTD.
Changelog:
2005-10-23 Andrew John Hughes <[EMAIL PROTECTED]>
* java/util/Properties.java
(storeToXML(OutputStream,String,String)): Adde
I'm committing the attached patch to port across this properties exception
from the generics branch. It is required by the latest Properties patch.
Changelog:
2005-08-13 Tom Tromey <[EMAIL PROTECTED]>
* java/util/InvalidPropertiesFormatException.java: New file.
--
Andrew :-)
Please
On Wed, 2005-10-19 at 12:24 -0700, Anthony Green wrote:
> Synchronization often shows up near the very top of gcj-compiled
> benchmarks. It turns out that, for benchmarks I've run, ~50% of the
> synchronization calls come from reading property files with
> StringBuffer. This should all go away if
rk out why this was in there last time (I didn't put
it there), and it doesn't seem to cause any problems pulling it out.
Changelog:
2005-11-01 Andrew John Hughes <[EMAIL PROTECTED]>
* java/io/ObjectInputStream.java:
(parseContent(byte)): Remove weird exception
I'm committing the attached patch to add myself to the AUTHORS list;
it seems to be in vogue today.
Changelog:
2005-11-02 Andrew John Hughes <[EMAIL PROTECTED]>
* AUTHORS: Added myself.
--
Andrew :-)
Please avoid sending me Microsoft Office (e.g. Word, PowerPoint) attac
And likewise on generics.
2005-11-02 Andrew John Hughes <[EMAIL PROTECTED]>
* AUTHORS: Added myself.
--
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 Microsoft
I'm committing the attached patch, which removes
the option of gcj, jikes or kjc compilation from the generics
branch. This stops it picking a compiler that won't be able
to handle the branch.
Changelog:
2005-11-02 Andrew John Hughes <[EMAIL PROTECTED]>
* exam
On Mon, 2005-11-07 at 14:10 -0500, Anthony Balkissoon wrote:
> Implemented the toString methods from java.util.Arrays that JAPI pointed
> out were missing.
>
> 2005-11-07 Anthony Balkissoon <[EMAIL PROTECTED]>
>
> * java/util/Arrays.java:
> (toString(long[])): New API method.
>
On Sun, 2005-12-04 at 14:11 +0100, Nicolas Geoffray wrote:
> Here's a fix that eases implementation of the
> VMInstrumentationImpl.redefineClasses
> method. The VM might not want to keep the Instrument object, therefore
> it must
> be given explicitely to the VMInstrumentationImpl.redefineClasses
would be nice to know how to do this.
I'm guessing that mprec is separate from fdlibm although it appears in
the same directory; I recall there was talk of an update of this as well
to probably handle 64-bit support.
Changelog:
2006-02-06 Andrew John Hughes <[EMAIL PROTECTED
On Tue, 2006-02-07 at 00:20 +0100, Robert Schuster wrote:
> Hi.
>
> Nice work. I think the JNode guys will appreciate this. :)
>
Yep, Ewout filed the bug.
> > +package java.lang;
> > +
> > +import gnu.classpath.Configuration;
> > +
> > +class VMMath
> > +{
> > +
> > + static
> > + {
> > +
On Mon, 2006-02-06 at 21:58 +, Andrew John Hughes wrote:
> I'd welcome any comments on the attached patch,
> which separates the Math native methods into a separate
> class, VMMath, so that they can optionally be replaced
> by the VM. This fixes PR22198.
>
> I also ha
On Mon, 2006-02-13 at 20:11 +0100, Mark Wielaard wrote:
> Hi Andrew,
>
> On Mon, 2006-02-13 at 16:13 +0000, Andrew John Hughes wrote:
> > On Mon, 2006-02-06 at 21:58 +0000, Andrew John Hughes wrote:
> > > I'd welcome any comments on the attached patch,
> >
On Mon, 2006-02-20 at 17:33 -0500, Anthony Balkissoon wrote:
> On Mon, 2006-02-20 at 15:09 -0500, Anthony Balkissoon wrote:
> > This is RFC because it's my first commit to the generics branch and I
> > just want to make sure there aren't any special procedures I forgot.
> >
> > 2006-02-20 Anthon
d, running autogen, configure,
> ClasspathHeaders, BuildNative, etc.
> Andrew Overholt gave it a quick look for me but we didn't see the
> problem so we just worked around it on my local machine.
>
>
> That's all for now, I should have some more java.math stuff ready so
The attached patch adds the proposed documentation changes mentioned
earlier by Mark. A fix is on the way for the Darwin problem with the
changes in fdlibm.
Changelog:
2006-02-24 Andrew John Hughes <[EMAIL PROTECTED]>
* NEWS: Mentions the VMMath runtime changes.
I'm committing the attached patch which fixes the Darwin build problem
highlighted by Chris, and adds in a number of casts missing from the
recent crypto changes.
Changelog:
2006-02-24 Andrew John Hughes <[EMAIL PROTECTED]>
* gnu/java/security/prng/BasePRNG.java:
On Mon, 2006-02-27 at 16:36 -0500, Anthony Balkissoon wrote:
> More stuff. Sorry for not sending this BigDecimal stuff all at once but
> my test cases are small and I prefer to get the stuff committed once its
> been tested. Also helps me use JAPI to determine what needs to be done.
>
> 2006-02-
On Mon, 2006-02-27 at 16:36 -0500, Anthony Balkissoon wrote:
> More stuff. Sorry for not sending this BigDecimal stuff all at once but
> my test cases are small and I prefer to get the stuff committed once its
> been tested. Also helps me use JAPI to determine what needs to be done.
>
> 2006-02-
The attached patch puts back a line required for Classpath to be built on
Solaris. It seems to have been lost in the move from PlainSocketImpl to
VMPlainSocketImpl.
Changelog:
2006-03-02 Andrew John Hughes <[EMAIL PROTECTED]>
* native/jni/java-net/gnu_java_net_VMPlainSocket
On Wed, 15 Mar 2006 17:16:33 +0100
Wolfgang Baer <[EMAIL PROTECTED]> wrote:
> Hi Audrius,
>
> Audrius Meskauskas wrote:
> > Great job!
>
> There are a lot more of these issues as pointed out by reverse japi.
> http://www.kaffe.org/~stuart/japi/htmlout/h-classpath-jdk15.html
>
> I will try conti
I propose the attached patch which moves the native method in
java.lang.reflect.Array to a new VMArray class, as per PR#22923.
Changelog:
2006-03-18 Andrew John Hughes <[EMAIL PROTECTED]>
* doc/vmintegration.texinfo:
Updated to include VMArray.
* include/Makef
On Sun, 2006-03-19 at 01:05 +, Andrew John Hughes wrote:
> I propose the attached patch which moves the native method in
> java.lang.reflect.Array to a new VMArray class, as per PR#22923.
>
> Changelog:
>
> 2006-03-18 Andrew John Hughes <[EMAIL PROTECTED
On Sun, 2006-03-19 at 21:36 +, David Gilbert wrote:
> Tom Tromey wrote:
>
> >We need to declare war on stubs. They improperly inflate our japi
> >scores and blind us to the real state of Classpath. Also I seem to
> >keep running into them as I dig around :-(
> >
> >
> I've spotted a few in
will need to be supported by VMs in order to handle the
concurrency code. As part of the VM layer, I'm committing this to both
branches, as we want to keep these as consistent as possible.
Changelog:
2006-03-19 Andrew John Hughes <[EMAIL PROTECTED]>
* vm/reference/gnu/class
The attached patch simply updates NEWS with the recent
VM changes.
Changelog:
2006-03-20 Andrew John Hughes <[EMAIL PROTECTED]>
* NEWS:
Updated with VMArray and Unsafe changes.
--
Andrew :-)
Please avoid sending me Microsoft Office (e.g. Word, PowerPoint)
attachment
On Sun, 2006-03-19 at 19:58 -0500, Stuart Ballard wrote:
> On 3/19/06, Andrew John Hughes <[EMAIL PROTECTED]> wrote:
> > I think the interface problem you mention is the most obvious, but I
> > think this should be solvable by declaring the class abstract (which
>
The attached patch just makes java.util.Formatter final, as
demonstrated by JAPI.
Changelog:
2006-03-20 Andrew John Hughes <[EMAIL PROTECTED]>
* java/util/Formatter.java:
Make the class final.
--
Andrew :-)
Please avoid sending me Microsoft Office (e.g. Word, Powe
I'm committing the attached patch which synchronizes the VM integration
doc with the addition of gnu.classpath.Unsafe.
Changelog:
2006-03-20 Andrew John Hughes <[EMAIL PROTECTED]>
* doc/vmintegration.texinfo:
Updated with gnu.classpath.Unsafe
--
Andrew :-)
P
I'm committing the attached patch which adds some features required by
the new concurrency tree prepared by Tom Tromey and documented by
myself.
Changelog:
2006-03-20 Andrew John Hughes <[EMAIL PROTECTED]>
* java/lang/System.java:
(nanoTime()): Documented.
On Mon, 20 Mar 2006 09:15:41 -0500
"Stuart Ballard" <[EMAIL PROTECTED]> wrote:
> On 3/19/06, Stuart Ballard <[EMAIL PROTECTED]> wrote:
> > As far as I can figure out, an annotation is pretty much the only way
> > to get these kinds of methods to get flagged by Japi.
>
> Actually, I figured out (a
On 20 Mar 2006 11:47:34 -0700
Tom Tromey <[EMAIL PROTECTED]> wrote:
> > "Stuart" == Stuart Ballard <[EMAIL PROTECTED]> writes:
>
> Stuart> What's the status on the whole ecj-as-gcc-frontend thing?
>
> It is still being discussed by the GCC Steering Committee. I'm
> hopeful that we'll get th
On 21 Mar 2006 17:36:52 -0700
Tom Tromey <[EMAIL PROTECTED]> wrote:
> > "Tom" == Tom Tromey <[EMAIL PROTECTED]> writes:
>
> > "Stuart" == Stuart Ballard <[EMAIL PROTECTED]> writes:
>
> Stuart> I believe Classpath already has an unchecked NotImplementedException
> Stuart> so that's what I
>
> On Sat, 2006-03-25 at 01:46 +, Andrew John Hughes wrote:
> > CVSROOT:/cvsroot/classpath
> > Module name:classpath
> > Branch: generics-branch
> > Changes by: Andrew John Hughes <[EMAIL PROTECTED]> 06/03/25 01:46:13
> >
&g
I'm committing the attached patch which merges some long-standing
changes in InputStream (August '04) to HEAD.
Changelog:
2006-03-26 Tom Tromey <[EMAIL PROTECTED]>
* java/io/InputStream.java (InputStream): Implements Closeable.
I'm committing the attached patch which merges some minor
differences between files on HEAD and the generics branch.
Changelog:
2006-03-26 Andrew John Hughes <[EMAIL PROTECTED]>
* gnu/java/net/protocol/http/Headers.java:
Match layout of file on HEAD.
* gnu/
2006-03-26 Andrew John Hughes <[EMAIL PROTECTED]>
* gnu/java/security/jce/hash/HavalSpi.java,
* gnu/java/security/jce/hash/MD2Spi.java,
* gnu/java/security/jce/hash/MD4Spi.java,
* gnu/java/security/jce/hash/MD5Spi.java,
* gnu/java/s
I'm committing the attached patch which fixes a bug turned
up by reverse JAPI: java.lang.ProcessBuilder should be final.
Changelog:
2006-03-26 Andrew John Hughes <[EMAIL PROTECTED]>
* java/lang/ProcessBuilder.java:
Made final.
--
Andrew :-)
Please avoid sending m
I'm committing the attached patch which adds documentation to the
three new methods in java.io.CharArrayWriter.
Changelog:
2006-03-27 Andrew John Hughes <[EMAIL PROTECTED]>
* java/io/CharArrayWriter.java:
(append(char)): Documented.
(append(CharSequence)
I'm committing the attached patch which merges in the additions
to java.io.CharArrayWriter from the generics branch.
Changelog:
2006-03-27 Andrew John Hughes <[EMAIL PROTECTED]>
* java/io/CharArrayWriter.java:
(append(char)): Documented.
(append(C
I'm committing the attached patch which fixes a bug found by
reverse JAPI.
Changelog:
2006-03-27 Andrew John Hughes <[EMAIL PROTECTED]>
* java/rmi/activation/ActivationGroup_Stub.java:
Made final.
--
Andrew :-)
Please avoid sending me Microsoft Office (e.g. Word,
I'm committing the attached patch which fixes the serialization UIDs for two
new enumerations.
Changelog:
2006-03-27 Andrew John Hughes <[EMAIL PROTECTED]>
* java/math/RoundingMode.java:
Fixed serialization UID.
* java/net/Proxy.java:
(Type
I'm committing the attached patch which fixes a build failure I caused
by my changes to java.net.Proxy last night; apologies.
Changelog:
2006-03-28 Andrew John Hughes <[EMAIL PROTECTED]>
* java/net/Proxy.java:
(Type): Add missing semi-colon.
--
Andrew :-)
P
ilable
for anything but the branch.
Changelog:
2006-03-29 Andrew John Hughes <[EMAIL PROTECTED]>
* java/io/ObjectInputStream.java:
(parseContent(byte)): Added enum support.
* java/io/ObjectStreamConstants.java:
(TC_ENUM): Added.
(TC_MAX): Ch
I'm committing the attached patch which adds enum serialization support
to ObjectOutputStream.
Changelog:
2006-04-02 Andrew John Hughes <[EMAIL PROTECTED]>
* java/io/ObjectOutputStream.java:
(writeObject(Object)): Added enum support.
(writeClas
I'm committing the attached patch which fixes the types
of some signatures in java.util.Collections reported by JAPI.
Changelog:
2006-04-02 Andrew John Hughes <[EMAIL PROTECTED]>
* java/util/Collections.java:
(binarySearch(List, T)): Fixed signature.
(unmod
On Wed, Apr 12, 2006 at 06:14:33PM +0200, Mark Wielaard wrote:
> Hi Archie,
>
> On Wed, 2006-04-12 at 09:10 -0500, Archie Cobbs wrote:
> > Mark Wielaard wrote:
> > > + /**
> > > + *
> > > + * Returns the handler used when this thread terminates due to an
> > > + * uncaught exception. The
I'm committing the attached patch which removes the $Revision CVS tags
from the remaining gnu.crypto import stuff.
Changelog:
2006-04-13 Andrew John Hughes <[EMAIL PROTECTED]>
* gnu/javax/crypto/assembly/Assembly.java,
* gnu/javax/crypto/assembly/C
I'm committing the attached patch which adds the remaining missing constants
in javax.accessibility. It also adds a few missing bits of the VM classes
that missed the last merge (spotted when going back from HEAD to generics).
Changelog:
2006-04-15 Andrew John Hughes <[EMAIL P
I'm committing the attached patch to HEAD to update the documentation
with the recent VM changes.
Changelog:
2006-04-16 Andrew John Hughes <[EMAIL PROTECTED]>
* NEWS:
Mention generics additions to the VM interface.
* doc/vmintegration.texinfo:
Added
I'm committing the attached patch which fixes a minor sectioning bug
in the recent documentation update.
Changelog:
2006-04-16 Andrew John Hughes <[EMAIL PROTECTED]>
* doc/vmintegration.texinfo:
Fix sectioning.
--
Andrew :-)
Please avoid sending me Micro
I'm committing the attached patch to merge in a slightly-altered (sans
generic-typing)
version of java.lang.instrument from the generics branch. Note that this is
just
the front-facing bit; the VM side is still to come.
Changelog:
2005-12-13 Tom Tromey <[EMAIL PROTECTED]>
* java/lan
I'm committing the attached patch to add documentation to
java.lang.annotation.Annotation.
Changelog:
2006-04-17 Andrew John Hughes <[EMAIL PROTECTED]>
* java/lang/annotation/Annotation.java:
Documented.
--
Andrew :-)
Please avoid sending me Microsoft Office
I'm committing the attached patch which brings in a few
more files from the generics branch that will compile
on HEAD with some minor signature changes.
Changelog:
2006-04-17 Andrew John Hughes <[EMAIL PROTECTED]>
* java/lang/annotation/Annotation.java:
Documented.
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.
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/ClassLo
2006-04-17 Andrew John Hughes <[EMAIL PROTECTED]>
* gnu/java/lang/InstrumentationImpl.java:
Moved from java.lang.
* java/lang/InstrumentationImpl.java:
Removed.
* vm/reference/gnu/java/lang/VMInstrumentationImpl.java:
Moved from java.lang.
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
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) attachment
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) attac
On Fri, 2006-04-21 at 15:23 +0200, Jeroen Frijters wrote:
> Hi,
>
> Since we can now support annotations on the trunk I'd like to merge
> Class/VMClass with the versions from the generics branch (modulo any 1.5
> language feature, of course).
>
I thought we agreed that these should be exactly th
On Sat, 2006-04-22 at 08:30 +0200, Jeroen Frijters wrote:
> Andrew John Hughes wrote:
> > On Fri, 2006-04-21 at 15:23 +0200, Jeroen Frijters wrote:
> > > Since we can now support annotations on the trunk I'd like to merge
> > > Class/VMClass with the v
On 21 Apr 2006, at 10:45, Jeroen Frijters wrote:
Hi,
I updated java.lang.reflect.AccessibleObject to 1.5. I wrote some
throwaway code to figure out the JDK 1.5 behavior for these methods
and
duplicated that.
Regards,
Jeroen
2006-04-21 Jeroen Frijters <[EMAIL PROTECTED]>
* java/
I'm committing the attached patch which links the java.lang.instrumentation
stuff into ClassLoader. NOTE: This makes defineClassWithTransformers
a necessity.
Changelog:
2005-12-14 Nicolas Geoffray <[EMAIL PROTECTED]>
* java/lang/ClassLoader
(defineClass(String,byte[],int,int,P
On Sun, 2006-04-23 at 12:16 +0200, Jeroen Frijters wrote:
> Hi,
>
> Since I'm shortly going to commit my change to trunk, I've committed
> this to the generics branch to make the VM interfaces the same.
>
> Regards,
> Jeroen
>
> 2006-04-23 Jeroen Frijters <[EMAIL PROTECTED]>
>
> * jav
On 25 Apr 2006 17:02:43 -0600
Tom Tromey <[EMAIL PROTECTED]> wrote:
> I'm checking this in on the generics branch.
>
> This fixes a few problems on the generics branch as pointed out by
> japi.
>
> Tom
>
> 2006-04-25 Tom Tromey <[EMAIL PROTECTED]>
>
> * javax/swing/JComboBox.java (Acce
On 26 Apr 2006, at 18:37, Tom Tromey wrote:
"Mark" == Mark Wielaard <[EMAIL PROTECTED]> writes:
Mark> It would be a good point to declare the vm classes interface
Mark> frozen for now and work towards a new snapshot release that
Mark> includes them.
Actually I would like to make one more cha
I'm committing the attached patch which adds regeneration of
gnu.java.net.LocalSocketImpl.h to the include Makefile.am and
also fixes a header I wrongly changed a few weeks back.
Changelog:
2006-05-03 Andrew John Hughes <[EMAIL PROTECTED]>
* include/Makefile.am:
I'm committing the attached patch to move HEAD on to
version 0.92.
Changelog:
2006-05-03 Andrew John Hughes <[EMAIL PROTECTED]>
* configure.ac:
Set version to 0.92-pre.
* NEWS:
Add space for 0.92 entries.
--
Andrew :-)
Please avoid sending m
On Fri, 05 May 2006 10:05:59 +0200
Audrius Meskauskas <[EMAIL PROTECTED]> wrote:
> This patch fixes the NPE, observed by Lillian when running jode. The NPE
> is raised if the tree contains no visible nodes.
>
> 2006-05-05 Audrius Meskauskas <[EMAIL PROTECTED]>
>
> javax/swing/plaf/basic/B
On Thu, 2006-05-04 at 15:10 -0400, Lillian Angel wrote:
> 2006-05-04 Lillian Angel <[EMAIL PROTECTED]>
>
> * javax/swing/JLabel.java
> (JLabel): Pass in an empty string for the text parameter.
> (JLabel): Likewise.
> (JLabel): Likewise.
Committed to the release
On Thu, 2006-05-04 at 09:19 +1000, Raif S. Naffah wrote:
>
> 2006-05-04 Raif S. Naffah <[EMAIL PROTECTED]>
>
> * tools/gnu/classpath/tools/keytool/ExportCmd.java (setup):
> Use _alias instead of alias.
Committed to the release branch.
--
Andrew :-)
Please avoid sending me Mi
On Thu, 2006-05-04 at 14:13 +0200, Roman Kennke wrote:
> The attached patch fixes a couple of issues in JTables:
> - the border color for selected cells was not correct in the Metal L&F
> - the table was not painted correctly. The grid must be painted to the
> right and bottom of each cell, we pain
On Thu, 2006-05-04 at 14:19 +0200, Roman Kennke wrote:
> I forgot one patch. This one fixes the colors and borders for selected
> table cells.
>
> 2006-05-04 Roman Kennke <[EMAIL PROTECTED]>
>
> * javax/swing/table/DefaultTableCellModel.java
> (noFocusBorder): Fixed width of empt
On Sun, 2006-05-07 at 03:46 +0200, Roman Kennke wrote:
> Here I provide an implementation of the new Java2D, it's called
> RasterGraphics and extends AbstractGraphics2D for arbitrary Rasters.
> This implementation serves two purposes:
>
> 1. (most importantly) provide capability to render on Buffe
On Sun, 2006-05-07 at 03:37 +0200, Roman Kennke wrote:
> I implemented support for painting (Color, Texture and Gradient, at
> least theoretically - see below) and compositing for the
> AbstractGraphics2D class. This allows for the following:
>
> http://kennke.org/blog/blosxom.cgi/2006/05/06#java2
On Thu, 2006-05-04 at 15:14 +0200, Roman Kennke wrote:
> I noticed that in AbstractButton we have two new methods since 1.5:
> addImp() and setLayout(). After playing around with them I figured that
> addImpl() installs an OverlayLayout, but only in the case when the
> client app hasn't installed a
On Sun, 2006-05-07 at 03:17 +0200, Roman Kennke wrote:
> I fixed a couple of bugs in my (completely naive and until now untested)
> implementation of AlphaCompositeContext. Compositing works correctly
> now, albeit awfully slow:
>
> http://kennke.org/~roman/java2d.png
>
>
> 2006-05-07 Roman Ken
On Fri, 2006-05-05 at 15:08 +0200, Roman Kennke wrote:
> In ColorModel the method getNormalizedComponents hasn't been implemented
> with the remark, that subclasses are expected to implement that method.
> This seems not quite right, according to the API specs and I filled in
> the missing 'fallbac
On Fri, 2006-05-05 at 13:59 +0200, Roman Kennke wrote:
> I was having a problem with an application that overrides setEnabled()
> and isEnabled() in a JCheckBox in an weird way, which ended up in an
> inconstisant state of JCheckBox.isEnabled() and
> JCheckBox.getButtonModel().isEnabled(). This cau
On Thu, 2006-05-04 at 15:30 +0200, Roman Kennke wrote:
> I tagged some methods in JLabel as not implemented, added comments to
> others and changed paramString() to return super.paramString() which
> provides more meaningful information than "JLabel".
>
> 2006-05-04 Roman Kennke <[EMAIL PROTECTED
On Thu, 2006-05-04 at 16:48 +0200, Roman Kennke wrote:
> When playing with some apps I noticed that our conditions in
> BasicButtonListener.mouseEntered() where not quite right. Fixed by the
> attached patch.
>
> 2006-05-04 Roman Kennke <[EMAIL PROTECTED]>
>
> * javax/swing/plaf/basic/Ba
On Thu, 2006-05-04 at 16:12 +0200, Roman Kennke wrote:
> I implemented one stubbed method in AccessibleJOptionPane.
>
> 2006-05-04 Roman Kennke <[EMAIL PROTECTED]>
>
> * javax/swing/JOptionPane.java
> (AccessibleJOptionPane.getAccessibleRole): Implemented method.
>
> /Roman
Com
On Thu, 2006-05-04 at 15:22 +0200, Roman Kennke wrote:
> I added a null check in JComponent.paint() to avoid an NPE when the clip
> is null. The clip is allowed to be null, but with the GTK peers it seems
> it never becomes actually null. I came across this while playing with my
> XAWT peers.
>
>
On Fri, 2006-05-05 at 11:42 +0200, Roman Kennke wrote:
> The selection model of a JTable must be synced when the table model
> changes (i.e. insertion/removal of rows). This patch fixes this.
>
> 2006-05-05 Roman Kennke <[EMAIL PROTECTED]>
>
> * javax/swing/JTable.java
> (tableCh
ell.
Changelog:
2006-05-07 Andrew John Hughes <[EMAIL PROTECTED]>
* gnu/java/text/StringFormatBuffer.java:
(toString()): Implemented so we can see the contents.
* java/text/DecimalFormat.java:
(formatInternal(double,StringFormatBuffer,FieldPosition)):
On Sun, 2006-05-07 at 02:13 +0200, Sven de Marothy wrote:
> Hello,
> Having GLightweightPeer as a MouseListener (as per Mark's last fix)
> seems to add problems (clobbering the mouse-listener list). So now the
> setCursor call is done from Component instead.
>
> Also BasicTableHeaderUI didn't rese
On Sat, 2006-05-06 at 23:07 +0200, Sven de Marothy wrote:
> 2006-05-06 Sven de Marothy <[EMAIL PROTECTED]>
>
> Fixed PR27454
> * gnu/java/awt/peer/gtk/GtkImage: (drawPixels,drawPixelsScaled):
> Check for zero image sizes.
Committed to the release branch.
--
Andrew :-)
Please avoi
On Sun, 2006-05-07 at 23:42 +0200, Sven de Marothy wrote:
> 2006-05-07 Sven de Marothy <[EMAIL PROTECTED]>
>
> Fixed PR27463
> * javax/swing/plaf/metal/MetalInternalFrameTitlePane.java
> (propertyChange): Handle FRAME_ICON_PROPERTY property.
>
Committed to the release br
1 - 100 of 752 matches
Mail list logo