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.
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.