We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is the old GRECLIPSE-1792.
Consider the following:
package c; public class MyBeanJava { private String foo; public String getFoo() { return foo; } public void setFoo(String foo) { this.foo = foo; } public void setBar(String bar) { foo = bar.toUpperCase(); } }
And:
package c class ConstructorTest2 { static main(args) { MyBeanJava b = new MyBeanJava(|) } }
Invoke code assist at "|": no suggestion is given to perform a map-style constructor invocation.
Please note this code is the same as #330, with the only difference being the "bean" class is written in Java instead of Groovy.
The text was updated successfully, but these errors were encountered:
Fix for issues #330 and #332: named args for setters in map-style ctors
489479f
Could you give this a re-try with the latest build?
Sorry, something went wrong.
This use case seems to be fixed in 2.9.2.xx-201709052200-e46, thank you! 👍
No branches or pull requests
This is the old GRECLIPSE-1792.
Consider the following:
And:
Invoke code assist at "|": no suggestion is given to perform a map-style constructor invocation.
Please note this code is the same as #330, with the only difference being the "bean" class is written in Java instead of Groovy.
The text was updated successfully, but these errors were encountered: