Hello,

assume you are perform a Find Usages on a method. I often would find it 
really useful to get to know, in what context (meaning: what class the 
variable has) this method is invoked.

Example

class A:
    void test();

class B extends A:


class C:
   void test2() {
      B b = getB();
      b.test();
   }

I find usages for method test() in A. I get the class C usage in the 
context of B.

Why I want to get to know this? Because it indicates, whether a method 
could (should?) be moved to another class. Here it would make sense, to 
move test() to B.

Best regards
Thomas Singer
_____________
  smartcvs.com


_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-features

Reply via email to