ejaenv
ejaenv

Reputation: 2397

parameter name hint for Eclipse

Intellij includes a nice parameter name hint feature (Intellij idea - how to always show method parameter names)

Is it planned for Eclipse incorporate it too?

Upvotes: 47

Views: 12171

Answers (2)

timguy
timguy

Reputation: 2612

Update 2019: Code Mining is part of Eclipse now (Version: 2019-09 - but also some versions earlier).

Preferences -> Java -> Editor -> Code Minings -> [x] Show method parameter names

screenshot of code mining and the setting (screenshot is spring tool suite STS which is based on eclipse)

Upvotes: 54

Till Brychcy
Till Brychcy

Reputation: 2924

Angelo Zerr is working on this in his "JDT Codemining" project at https://github.com/angelozerr/jdt-codemining.

It won't be part of the upcoming Eclipse Photon release in June, but may be part of one of the next releases (Eclipse is switching from the yearly release cycle to to having a release every 3 month, so the next release will be in September).

He writes that by starring his project on github you can increase likeliness of this being included soon and you can help by testing and reporting issues.

Upvotes: 19

Related Questions