RE: How does GNU classpath implement char?

2005-09-13 Thread David Holmes
> The Sun Java documentation sasy that char is a 16 bit positive value > that has the representation of a character in UTF-16 encoding. As of Java 5.0 that is correct. Previously Java only supported the 16-bit Unicode standards. > So it seems to me that only BMP characters are representable in ch

JamVM 1.3.3 released

2005-09-13 Thread Robert Lougher
Hi, I'm pleased to announce the release of JamVM 1.3.3 (http://jamvm.sourceforge.net). This release adds ports to AMD64 and PowerPC64 and a couple of other minor features/bug-fixes. The full list of changes are here: http://sourceforge.net/project/shownotes.php?release_id=356099 Thanks, Rob.

Re: Loader in ObjectStreamClass.readClassDescriptor

2005-09-13 Thread Nicolas Geoffray
Hi Mark, Mark Wielaard wrote: Hi Nicolas, On Tue, 2005-08-02 at 14:08 +0200, Nicolas Geoffray wrote: Hi everyone, sorry for the typo, it was ObjectInputStream.readClassDescriptor that misbehaves. Shortly, when a reading a given class descriptor CL, it loads the class of a field from C

Re: RFC: Generics branch VM interface

2005-09-13 Thread Andrew John Hughes
On Thu, Jun 16, 2005 at 12:08:18PM +0200, Jeroen Frijters wrote: > Hi, > > I'd like to propose a fundamental change to the VM interface on the > generics branch. In particular, I'd like the VM interface (and in this > case I mean strictly the interface between the Foo and VMFoo classes) on > the g

Re: [Bug swing/23850] New: ProgressMonitor unimplemented

2005-09-13 Thread Robert Schuster
I just want to announce that I want to implement this (But my bugzilla account is not properly set up yet.) cu Robert roman at kennke dot org wrote: > The class javax.swing.ProgressMonitor and related classes are complete stubs > and > should be properly implemented. > ___

Re: How does GNU classpath implement char?

2005-09-13 Thread Tom Tromey
> "Robert" == Robert Schuster <[EMAIL PROTECTED]> writes: Robert> I obviously overlooked something in the JAPI comparison. There Robert> are indeed missing all the methods that deal with and 'int' as Robert> a character. There are also some in places like String, StringBuffer, etc. Tom ___

Re: How does GNU classpath implement char?

2005-09-13 Thread Robert Schuster
Hi, again. I obviously overlooked something in the JAPI comparison. There are indeed missing all the methods that deal with and 'int' as a character. cu Robert ___ Classpath mailing list Classpath@gnu.org http://lists.gnu.org/mailman/listinfo/classpath

Re: How does GNU classpath implement char?

2005-09-13 Thread Robert Schuster
Hi. > AIUI, 1.5 has a lot of library updates to allow for 'int' codepoints > that lie outside the 16 bit range of a java 'char'. For the most part > we have not implemented these APIs yet. They don't look intrinsically > hard, just voluminous... Sven has implemented a lot of 1.5 functionality in

[Bug classpath/23859] New: Assertion failure when calling JTabbedPane.addTab(null, ...)

2005-09-13 Thread konqueror at gmx dot de
Thanks to gcj's ability to compile native code that can be debugged with gdb, I finally could narrow down and report this bug that I first noticed with libgcj4 or libgcj5. The program runs fine under Sun's JVM, but libgcj aborts because of an assertion failure. I keep getting an assertion failure

[Bug classpath/23860] New: Exception in JComboBox.removeAllItems()

2005-09-13 Thread konqueror at gmx dot de
The following program works in Sun's JDK but fails in libgcj6: cat > crash.java << EOF import javax.swing.JComboBox; class crash { public static final void main (String args[]) { JComboBox c = new JComboBox (); c.addItem ("foo"); c.removeAllItems (); } } EOF gcj-4.0 --main=crash cr

Re: How does GNU classpath implement char?

2005-09-13 Thread Tom Tromey
> "Alexander" == Alexander Shopov <[EMAIL PROTECTED]> writes: Alexander> I was wondering - how does gnu classpath implement char Alexander> (the primitive value). In a technical sense, Classpath doesn't -- it just leaves the low-level representation of char to the VM. Alexander> So it seems

Re: rmi vs cajo

2005-09-13 Thread Andrew Haley
Mark Wielaard writes: > > While playing a bit with Cajo > (http://wiki.java.net/bin/view/Communications/ProxyUsage) I got the > following error: > > java.lang.NullPointerException >at gnu.cajo.invoke.Remote.hashCode (Remote.java:510) >at java.util.Hashtable.hash (Hashtable.java:82

How does GNU classpath implement char?

2005-09-13 Thread Alexander Shopov
Hi guys, I was wondering - how does gnu classpath implement char (the primitive value). The Sun Java documentation sasy that char is a 16 bit positive value that has the representation of a character in UTF-16 encoding. http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Character.html (This is