Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-ui-dev] Call hierarchy only for that extended class?

I sometimes have situations where I invoke call hierarchy on a method that overrides a parent class.

Ex:

Class A  {
     method()
}
Class B extends A {
    @Overrride
     method()      // <<< Call hierarchy here.
 }

I found that Eclipse will show all calls, including those that are only relevant to Class A. However, I would like to see calls only made to B.method(). Is this possible?

Like, sometimes the list is long...:
Inline image 1

---
Leo Ufimtsev
Software Engineer, Eclipse team.
Toronto, Canada

Red Hat, Inc.

Back to the top