Java debugger integration

Using the Java SDK with TextPad

Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard

Post Reply
nalenb
Posts: 1
Joined: Tue Nov 11, 2003 6:16 pm

Java debugger integration

Post by nalenb »

Does anyone have a setup that integrates the java debugger with TextPad? I like to be able to run it from within Textpad which I think is easy to setup. However, is there any way to mark breakpoints and have them passed to the debugger? I've always used an IDE to do debugging but would like to change to TextPad to do editting, running, and debugging.

Thanks
User avatar
davidakoontz
Posts: 8
Joined: Thu Nov 13, 2003 8:36 pm
Location: Arkansas USA
Contact:

Post by davidakoontz »

I think you're out of luck - what you appear to be asking for is theI in IDE - the integration of editor with debugger. TextPad is a wonderful editor - but the tool stops there.

However just by saying it can't be done - someone will prove me wrong...
Mark Rejhon
Posts: 11
Joined: Sat Aug 07, 2004 6:36 pm
Location: Ottawa, Ontario, Canada
Contact:

Post by Mark Rejhon »

Amazingly, TextPad is so powerful -- you can turn TextPad into a full debugging IDE just by writing a custom utility!

This following technique is successful:
http://textpad.com/forum/viewtopic.php?t=5682

You do have to be a programmer, because this requires writing a simple background Windows utility to control TextPad breakpoints and variable watches, turning TextPad into a what feels like a true IDE., however the background system tray utility requires only approximately 500 lines of code to turn TextPad into a full IDE with single-step, step-into, breakpoints, and variable watches for your own programming language of any choice, assuming the programming language you use has some kind of an API for integration with third-party IDE's.
Thanks,
Mark Rejhon
www.marky.com
(to contact me, please use the spamproof link at bottom of any page on my website)
Post Reply