3

I 'm able to get methods using BCEL but is it possible to get constructors of a class using the same library?

Feras Odeh
  • 9,136
  • 20
  • 77
  • 121

1 Answers1

4

Yes; the constructors are considered methods by BCEL. They are named <init> instead of the class's name.

Amanda S
  • 3,266
  • 4
  • 33
  • 45