[kaffe] running of kaffe on target machine -- Problem

2006-05-16 Thread Gowri
Hi all , I have installed executables in rootfs file system of target on host. (by using preferance --exec-prefix= PATH during configuration). later i transfered the same rootfs file system to the target using emulator. now when i try to run simple hellow orld apllication java HelloWorld ,

Re: [kaffe] Re: Swing not working - JFrame never shown

2006-05-16 Thread Lennon Cook
Riccardo [EMAIL PROTECTED] wrote: your example works perfectly in the kaffe I have on linux. Both with the kaffe-awt as with gtk-peer. Since a kaffe 1.4.2 doesn't exist, current version is 1.1.7... Oh, sorry. I was misreading -version. I am infact running 1.1.7-rc1 I will upgrade to 1.1.7

[kaffe] Re: F/OSS Java mini-talks during JavaOne

2006-05-16 Thread Mark Wielaard
Hi Fernando, On Mon, 2006-05-15 at 05:03 -0200, [EMAIL PROTECTED] wrote: If you happen to be at JavaOne this year, please drop by the java.net community corner. This year we'll have some mini-talks about JPackage, Kaffe, Classpath and other free Java stuff, besides some Sun-sponsored talks.

[kaffe] Java lang spec: private access

2006-05-16 Thread Ito Kazumitsu
Hi, This question is not directly related to kaffe, but ... The Java Language Specification, Third Edition says: |6.6.1 Determining Accessibility | Otherwise, if the member or constructor is declared private, then |access is permitted if and only if it occurs within the body of the top

Re: [kaffe] Java lang spec: private access

2006-05-16 Thread Stuart Ballard
Because inner classes *are* within the body of the top level class, perhaps? :) On 5/16/06, Ito Kazumitsu [EMAIL PROTECTED] wrote: Hi, This question is not directly related to kaffe, but ... The Java Language Specification, Third Edition says: |6.6.1 Determining Accessibility | Otherwise,

[kaffe] Re: Java lang spec: private access

2006-05-16 Thread Tom Tromey
Ito == Ito Kazumitsu [EMAIL PROTECTED] writes: Ito The Java Language Specification, Third Edition says: Ito |6.6.1 Determining Accessibility Ito Why the top level class ? At this level it is a language design decision. The idea is that all the code defined within the scope of a top-level

Re: [kaffe] Java lang spec: private access

2006-05-16 Thread Ito Kazumitsu
From: Stuart Ballard [EMAIL PROTECTED] Date: Tue, 16 May 2006 10:08:36 -0400 Because inner classes *are* within the body of the top level class, perhaps? :) Yes, in the following example, the private member of the inner class is accessible to the top level class. public class ZZ { public

[kaffe] CVS kaffe (riccardo): changed default fonts again

2006-05-16 Thread Kaffe CVS
PatchSet 7290 Date: 2006/05/16 16:19:50 Author: riccardo Branch: HEAD Tag: (none) Log: changed default fonts again Members: ChangeLog:1.4794-1.4795 libraries/javalib/awt-implementations/kaffe/java/awt/Defaults.java:1.3-1.4 Index: kaffe/ChangeLog diff -u

[kaffe] CVS kaffe (tonio): Fix fastjar path in jar script, from Jorg Sonnenberg

2006-05-16 Thread Kaffe CVS
PatchSet 7291 Date: 2006/05/16 19:33:34 Author: tonio Branch: HEAD Tag: (none) Log: Fix fastjar path in jar script, from Jorg Sonnenberg Members: ChangeLog:1.4795-1.4796 kaffe/scripts/jar.in:1.7-1.8 Index: kaffe/ChangeLog diff -u kaffe/ChangeLog:1.4795 kaffe/ChangeLog:1.4796

Re: [kaffe] Java lang spec: private access

2006-05-16 Thread Ito Kazumitsu
From: Ito Kazumitsu [EMAIL PROTECTED] Date: Wed, 17 May 2006 01:20:37 +0900 (JST) But the following cannot be compiled because a in type ZZ$ZZ1 is not accessible. Isn't this an access from within the top level class? I understand. It is not an access to a in type ZZ$ZZ1. public class ZZ {