Mauro Molinari
Mauro Molinari
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...
Somewhat related to #411. Consider the following code: ```groovy new List().eac| ``` Invoke content assist at "|": it's quite clear and obvious that I want to invoke one of the...
Follow-up to #762. Consider the following enum: ```java package test40; public enum MyEnum { FOO, BAR; } ``` And the following Groovy class: ```groovy package test40 class Test40 { void...
Another case similar to #676. Consider this enumeration: ```java package test33; public enum MyEnum { FOO, BAR; } ``` And assume you want to type this: ```groovy package test33 class...
Suppose you have code assist auto-activation enabled and you want to type: ``` def a = 12.0 def b = 5.0 ``` When you've finished to type `def a =...
Consider this example: ```groovy import groovy.transform.TupleConstructor @TupleConstructor class TestRecord { String foo String bar } ``` and the following Java class: ```java public class Test { public static void main(String[]...
I know this is a limit that most probably will never be fixed in Greclipse... but I felt like it should be tracked here, as well, as it was in...
**Describe the bug** When you enter a new unknown property in `application.properties`, a warning shows up saying it's an unknown property. Using quick fix (Ctrl+1) you should be able to...
Hi there, your Tomcat plugin is great! I could enhance my Gradle project to translate JSPs to Java source files within minutes. However, now I'm missing the next (natural?) step:...
## Specifications - JMSToolBox version: 5.8.0 - OS (Name, version, 32/64bits): Windows 10 64-bit - Q provider (kind, version) : ActiveMQ 5.7.0 in Service Mix ## Expected Behavior I can...