Wordpad/traceMethodCalls
Hi, There are 2 qts- 1. can I get a Command Line Debugger that implements
JDPA and can use the simple wordpad? If no, can anyone tell me why not such
a debugger is there. Just the debugger without IDE. 2. Can this be made to
work with JDK 1.3.1 from Sun- // set boolean argument to false to disable
Runtime.getRuntime().traceMethodCalls(true); callMyCode(); Runtime.getRuntime().traceMethodCalls(false);
JDK1.3.1_04 is simply ignoring this. This would allow a Method level tracing
for me programatically. Please reply ASAP, Thanks, Rohit
# 1 Re: Wordpad/traceMethodCalls
The new Omniscient Debugging was recently released by Bil Lewis (lambdacs).
I tried with a simple program- first compiling with the javac -g and then
running as- java com.lambda.Debugger.Debugger HelloWorld RohitSachdeva where
RohitSachdeva is just an argument. Everything worked and this gives the method
trace also very well. What I wanted to know was- We are usually given builds
to work on and that's like a jar file having all the classes. Do we have
to recompile with javac -g option for all the classes in the jar or only
the class having the main method in the jar. I want to see the Method Tracing
for the entire application as I saw for my simle HelloWorld Program. Please
reply ASAP, Thanks, Rohit.
Rohit at 2007-11-11 23:01:15 >
