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
Java debugger integration
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
- davidakoontz
- Posts: 8
- Joined: Thu Nov 13, 2003 8:36 pm
- Location: Arkansas USA
- Contact:
-
- Posts: 11
- Joined: Sat Aug 07, 2004 6:36 pm
- Location: Ottawa, Ontario, Canada
- Contact:
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.
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)
Mark Rejhon
www.marky.com
(to contact me, please use the spamproof link at bottom of any page on my website)