Java – search the eclipse outline for a specific return type

I have a huge Java class and I want to see all the methods that return myowndatatype I see a method in which a person can do Ctrl O and enter something to print the name to match the string I just gave

I found a partial solution: if I enter myowndatatype, I will get all methods that return myowndatatype and the parameter type is myowndatatype

Is there any way to do this (NEAT)?

Solution

You must enter *: myowndatatype explain:

>The quick contour search is just to match the exact contour node text. > The format of the method is < name > (< arguments >): < return type >. > You can use the * wildcard

(note that for me in Kepler, I must type * myowndatatype (not just myowndatatype) to find the method with return or parameter type of myowndatatype.)

The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
分享
二维码
< <上一篇
下一篇>>