package p;
public abstract class A { abstract void a(); }
class A1Impl extends A {
/** @see A#a() */
@Override void a() { } } // cursor on a() in A1Impl, ctrl+alt+h,show method hierarchy
class A2Impl extends A {
/** @see A#a() */
@Override void a() { } }
class Caller {
void call(A1Impl a) {
a.a();
}
}
cursor on a() in A1Impl, ctrl+alt+h,show method hierarchy, how to set to not show the other 2 irrelevant caller in the selects red box but not remote the @see .. in codes?
Please see/comment/follow related issue at YouTrack: https://youtrack.jetbrains.com/issue/IDEA-185139