Can't edit code while running program

Hello,How to do?I'm just change from VB 6 to Java by NetBean and in VB I can did it. But can't in NetBean 5.5.
[140 byte] By [under_ware] at [2007-11-26 7:35:05]
# 1
Hmmm.. Thus feature is not available in NetBeans AFAIK. Aaand I doubt that it is in any Java IDE. Sorry.
KSorokin at 2007-7-6 19:34:04 > top of Java-index,Development Tools,Java Tools...
# 2
What are you talking about? Could you give more details on what you want to do? And what prevents you from doing that?
mrkam at 2007-7-6 19:34:04 > top of Java-index,Development Tools,Java Tools...
# 3
I think under_ware means changing code during a debug session so that the updated code becomes effective at once. There is something similar for NB modules, but not for a general application.
KSorokin at 2007-7-6 19:34:04 > top of Java-index,Development Tools,Java Tools...
# 4

This is possible when in the debugger. The following is from NB's Help - See "Fixing and Continuing" topic.

If you find a problem while debugging, you can use the Apply Code Changes command to fix your source and then continue debugging with the changed code without restarting your program.

It is not possible to use the Apply Code Changes command to do the following:

- Change a modifier of a field, a method, or a class

- Add or remove methods or fields

- Change the hierarchy of classes

- Change classes that have not been loaded into the virtual machine

ChuckBing at 2007-7-6 19:34:04 > top of Java-index,Development Tools,Java Tools...