In Eclipse can you find all methods in a project that take a specific type of parameter?

So basically my question. I am converting all ArrayLists in HashMaps methods to parameterized methods, but I don't want to convert all ArrayLists to HashMaps as there are several that are used locally. It's more of a curiosity than anything, but it would be helpful.

So, in Eclipse, can you find all methods in a project that take a specific type of parameter?

+10


source to share


1 answer


Click Ctrl+ Hor in the menu bar Search- Search ..., then choose Java Search: enter image description here

Then click "Limit" - "Match" (x out of 15 selected): enter image description here



This should give what you want.

+14


source







All Articles