This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Dynamically loaded modules
- To: jim at weathercom dot com
- Subject: Re: Dynamically loaded modules
- From: Tom Tromey <tromey at redhat dot com>
- Date: 10 May 2001 11:53:03 -0600
- Cc: gcj <java at gcc dot gnu dot org>
- References: <3AFA048D.B628A071@weathercom.com>
- Reply-To: tromey at redhat dot com
>>>>> "Jim" == jim <jim@weathercom.com> writes:
Jim> How well do programs compiled with gcj handel serialized objects
Jim> and JavaBeans? I'm working on a app that needs to load modules
Jim> on startup to modify it's GUI and behavior. Any ideas how gcj
Jim> would handle that?
gcj serialization is compatible with the JDK. We believe it is
complete, but you will probably find the occasional bug.
I don't know anything about beans. gcj doesn't have any java-style
GUI capability (no AWT or Swing -- but there is a gnome-gcj).
libgcj can load bytecode just like other VMs, at least on platforms
where the interpreter works (x86, alpha, ppc, ia64). libgcj can also
load precompiled java code (shared objects).
Tom