I'm a newbie to Javassist, and I've already read some tutorials related to it.
Because I need do some bytecode injection in each method enter or before the method exit, and get some statistics from this.
Through the online javassit tutorial, I find that we can make a new field to an existing class:
CtClass point = ClassPool.getDefault().get("Point");
CtField f = new CtField(CtClass.intType, "z", point);
point.addField(f);
But the type of the CtField only contains primitive type by default, can we add a new field whose type is non-primitive, for instance, ArrayList?
If I can add the new ArrayList field to the existing class, since the class doesn't import java.util.ArrayList, will it cause compile error?