<Ctrl-Space> is now smart enough to suggest not yet existing getters/setters, as long as we type the full signature correctly.
This request is about removing this constraint:
before:
-------
get<cursor here>
private String name;
Action: <Ctrl-Space> + select "getName"
------
After:
------
public String getName (){ return name;}
private String name;