I have a method and want to examine variables inside it without debugging - is it possible in Java?
I do not want to write tons of code like:
Syste
What do you mean by "examining" ? Try a System.out.println(yourvariable), or (yourvariable.toString()) if it's an object. It'll display it in the console.