I don't see any class with that name in the IntelliJ IDEA source code. Normally, if you want to subclass a class from a plugin, you need to add a <depends> tag with the plugin ID to your plugin.xml and add the jar of the plugin (from the plugins/<plugin name>/lib directory) to the classpath of your IntelliJ IDEA SDK.
You may also want to clone the source code of IntelliJ IDEA and attach it to your IntelliJ IDEA SDK, in order to see the source in the IDE, but this is not a required step.
Sorry still not working ?:| Which JAR file do I need to be use GroovyConsoleAction? I keep adding groovy-eclipse-batch-2.3.4-01.jar but the acutal file is:
I don't see any class with that name in the IntelliJ IDEA source code. Normally, if you want to subclass a class from a plugin, you need to add a <depends> tag with the plugin ID to your plugin.xml and add the jar of the plugin (from the plugins/<plugin name>/lib directory) to the classpath of your IntelliJ IDEA SDK.
You may also want to clone the source code of IntelliJ IDEA and attach it to your IntelliJ IDEA SDK, in order to see the source in the IDE, but this is not a required step.
Whoops yes it is:
GroovyActionConsole GroovyConsoleAction
Thanks Dmitry!
Sorry still not working ?:|
Which JAR file do I need to be use GroovyConsoleAction?
I keep adding groovy-eclipse-batch-2.3.4-01.jar but the acutal file is:
[cloned IntelliJ source]plugins\groovy\src\org\jetbrains\plugins\groovy\console\GroovyConsoleAction.java
You need plugins/Groovy/lib/Groovy.jar
Ok works! Thanks!:)