I created a constructor with Javassist which has no real method
CtConstructor c = CtNewConstructor.make ( argTypes, null, newClass );
When I'm trying to put out the signature of this class
c.getSignature();
I get
public Echo ()V
I'm confused what "V" means? I expected either public Echo (); or something similar...