I'm using JDE for writing a larger project. Coming from Eclipse, i miss the run configurations. Basically, there are several different classes in the project that i would like to launch. Some of them are applets, some of the are regular classes with a main method. I would also like to be able to specify different run time arguments to them.
Basically, something like this:
run_config_1 applet: false main class: package1.subpackage1.ClassX arguments: arg1 arg2 run_config_2 applet: true main class: package1.subpackage1.AppletClassX arguments: etc ...
Then I could switch configuration on the fly, testing different parts of the project. So is there something like this for JDE? Or do I have to write it myself? If that is the case, I would like some pointers on the general direction I should take.