This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
gcj: java.lang.reflect.InvocationHandler
- From: "Thijs Cadier" <thijs at cadier dot net>
- To: <gcc at gnu dot org>
- Date: Sun, 6 Jul 2003 13:22:10 +0200
- Subject: gcj: java.lang.reflect.InvocationHandler
Hello,
I'm trying to build an external library I want to use to that implements
java.lang.reflect.InvocationHandler with GCJ.
GCJ gives this error:
D:\cmsapp\lib\com\caucho\hessian\client\HessianProxy.java:62: Superinterface
`InvocationHandler' of class com.caucho.hessian.client.HessianProxy' not
found.
public class HessianProxy implements InvocationHandler {
^
1 error
I have libgcj-3.3.jar in my classpath. I checked the contents of the jar and
found InvocationHandler.class.
So to me it seems like this should be working the way I'm trying to do this.
Has anybody got a clue about what's wrong?