java - Can I filter autocomplete suggestions by return type in Eclipse? -
when autocompleting method calls in eclipse, possible filter list of suggestions on these criteria :
- return type
- class implementing method
i.e. when type myarraylist. find methods returning boolean inherited abstractcollection ?
if create local variable , attempt assign it, eclipse puts matching return types first in autocomplete list, e.g.
abstractcollection obj; boolean temp = obj.<autocomplete list> if declare obj abstractcollection, won't see other methods.
Comments
Post a Comment