Thank you, Your Reply was very useful.
Please have a look at my detailed description...
I need information in understanding the need of a seperate Java Debug
model available inspite of haveing a Debug model for Eclipse. If the
support for C++ has to be provided then a debug model for C++ (C / C++
Development Tool) is provided.
My Question is What's the purpose of Default Debug framework of
Eclipse .
Pls let me know if you could provide some suggestions on this topic.
With Regards,
Madan
>I need information in understanding the need of a seperate Java Debug
>model available inspite of haveing a Debug model for Eclipse. If the
[quoted text clipped - 3 lines]
>My Question is What's the purpose of Default Debug framework of
>Eclipse .
I'll make a wild stab here. There are three kinds of debugger. One
works the JVM level, each step is a byte code instruction or a line of
Java code. It can thus display java variables with their names and
values with the proper type. This is how the Eclipse debugger works.
one works at the machine code level, where you see registers, control
blocks and native machine code. Here you can do very fine
breakpoints, e.g. in the middle of an expression. the greybeards among
us will remember debugging with Periscope this way.
A third works at the C/C++ level somewhere between for debugging JNI
code. It is working at the machine code level, but has a map of C
source code lines to various spots in the machine code so it can
display roughly the corresponding code. It has a symbol table, but
the symbol table has no concept of type, so everything is presumed
decimal or hex. To use this sort of debugger you must be familiar with
both C and assembler
Perhaps you are being given the option of implementing any combination
of the three levels.

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
SharkHunter - 03 Nov 2005 19:43 GMT
Thanks a lot, I have visited our home page just now, since I was
curious to knoe abt the person who could reply with such a patience..
I am new to Debugging in Practical. didnt know that such Back ground
things run when setting breakpoints..
With Regards,
Madan