In Eclipse if you have a method:
String MyObject.getValue();
When using this you can go:
MyObject.getValue();
If you cursor is on the line and you hit CTRL+1 you get a context menu to 'assign a new local varaible', resulting in the following:
String value = MyObject.getValue();
Can you do this as easily in IntelliJ, I've search the net but without success.
Regards.