Hello from a new user...
I've got a couple of instrumented classfiles - the classfiles were made reflective and are being loaded by JBoss's standard classloader. Their relationship is something like this (simplified, of course):
public class A {
private SomeClass x;
public A() {
getX().someMethod();
}
public SomeClass getX() {
return x;
}
}
public class B extends A {
}Metaobject.trapMethodcall() A._added_m$0() A.getX() A.<init> B.<init>
I cannot tell you what's wrong but maybe
I think you forgot to copy something from
javassist.reflect.Compiler...