JavaScript?
No, just when I am in the Java section, would it be possible to have MyEcplise use the Ecplise Java editor, rather than the MyEcplise Java editor.
One difference is that the Ecplise Java editor uses “smart” guessing (based on method parameters and method return types) when presenting code-assist, where the MyEcplise editor uses alpha sorting.
Now your editor guy could put this in (after he recovers) but it is a never ending quest. By context switching to the Ecplise editor you could potentially save many hours of future development.
Not sure if you can actually do this given the current Ecplise paradigm, but it might be worth looking into….
Note: I do in fact write JavaScript inside Java, in a JSP page. The JavaScript is generated during runtime and contains constants which are passed between the Web browser and the Java applcation on the server. Things like (somewhat contrived for the example):
js.append("document." + form.getFormName() + "." + form.getUserIdName() + ".value='" + form.STD_USERID + "';");
which also means I cannot use the JavaScript debugger 🙂