I created a constructor with Javassist which has no real method
CtConstructor c = CtNewConstructor.make ( argTypes, null, newClass );
When I\'
V in a type signature means void type. Bytecode does not differentiate constructors from other methods (other than using special method name).