Given a line number, the code file, as well as the compiled class file if necessary, what is the most elegant way to get the signature of the surrounding method (if the line number is even in a method)?

Things to keep in mind:

  • the line might not even be in a method
  • the line might be in a method of an inner or anonymous class


While Googling I discovered this duplicate question so I'm closing this down myself.

link|improve this question

1  
There could be more than 1 method on a line. – Bart Kiers Sep 30 '09 at 14:31
in theory yes, Bart, but if so I WANT the solution to crash. :) – Epaga Sep 30 '09 at 14:33
feedback

1 Answer

That information should be available from the debugger meta information generated by the compiler.

javac -g:lines foo.java

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.