I am using Java Parser to get information about the method in a source file. I based my implementation as described in this answer . However the details of constructors are not being given. I think it has to do with how the Java parser works as the normal methods have a return type and the constructor doesn't.
Does anyone know how to be able to also get information of constructors using the Java parser?