This was the old GRECLIPSE-1772.
Consider the following:
package c
class MyBean {
String foo
void setBar(String bar) {
foo = bar.toUpperCase()
}
}
And:
package c
class ConstructorTest {
static main(args) {
MyBean b = new MyBean(f|)
}
}
Invoke code at "|": I would expect Greclipse to suggest the "foo" property to start a map-style constructor invocation (just like it does if I remove the leading "f"). However, this is not the case.
This was the old GRECLIPSE-1772.
Consider the following:
And:
Invoke code at "|": I would expect Greclipse to suggest the "foo" property to start a map-style constructor invocation (just like it does if I remove the leading "f"). However, this is not the case.