groovy-eclipse
groovy-eclipse copied to clipboard
Eclipse Groovy Development Tools
Consider this Java class: ```java package test59; public class Test59Java { public void foo(String string, Integer num) { } } ``` and this Groovy class: ```groovy package test59 import groovy.transform.CompileStatic...

I have Java formatter settings which should format the following: ```groovy def dummyMethod() { def doIt=false if(doIt) { return null } } ``` into: ```groovy def dummyMethod() { def doIt...
Consider the following: ```groovy package a class B { static def getX() {} } ``` ```groovy import static a.B.getX x ``` `x` is a static method call expression for `getX`....
Consider the following: ```groovy class C { Number n void meth(C that) { "setN"(42) this."setN"(42) that."setN"(42) } } ``` Renaming property "n" does not in-turn rename the method call expressions...
Lately I am seeing compile errors with my Spock/Geb classes when overriding methods like `setup()` or `cleanup()` across three levels of class hierarchy: ``` cannot override setup() ... attempting to...

Variation of #866. Consider this class: ```groovy package test50 class Test50 { String foo private final TreeNode| } ``` Invoke code assist at "|" and choose `javax.swing.tree.TreeNode`. Once again, the...
Consider this: ```groovy package test56 class Test56 { static Date foo(String foo) { new Date() } static Date bar(String bar) { foo(bar).clearTime() } } ``` Hit F2 or F3 over...