May I try to answer some questions that do not touch IDEA itself :) > For the idea (haha) I have, I would simply like my plugin to be called > after every build, and be able to access the list of compiler errors / > warnings produced by the build. Of course this would have to work with > IDEA builds and ANT builds.
You may create a special Ant task for you purposes of compiller errors handling. The invoke it in Ant script after compilation. Any output from this task will be shown in messages pane. So I think there is no need for any plugin here, unless you want to access the errors list produced by IDEA's own compilation mechanism. > Also, does the External Tools feature support Java classes as tools? It > would be really neat to run a Java class from the menu, passing it > parameters that are macros etc. No problem to call java class as external tool. Just create .bat or .sh file and make it call java.exe with appropriate parameters. You may pass any IDEA's macros as command-line parameter to .bat file in external tool configuration. --- Vladimir Kudinov V6.RU _______________________________________________ Eap-list mailing list [EMAIL PROTECTED] http://www.intellij.com/mailman/listinfo/eap-list
