If my class has a non-empty constructor, is it possible to autocomplete parameters in the new
expression?
With Eclipse, if you press ctrl + space when the cursor is between the parenthesis:
MyClass myObject = new MyClass();
will find the appropriate parameters.
--> MyClass myObject = new MyClass(name, value);
When I use ctrl + shift + spacebar after new
, Intellij shows me the constructors, but I cannot choose one for autocomplete. Am I missing an option?
intellij-idea
Loic Jan 27 '11 at 10:41 2011-01-27 10:41
source share