I don't want them shown as direct subclasses. I want the paths to all my
classes that derive from the given classes to be there.

For example:

class A extends JComponent // in project
class B extends JPanel     // in project
JPanel extends JComponent  // outside project
JComponent // outside project

Right now if I ask for the hierarchy starting from JComponent I get:

(c)JComponent
   (c)A

What I expect is:

(c)JComponent
   (c)A
   (c)Jpanel
      (c)B

-- Mark

-----Original Message-----
From: Valentin Kipiatkov [mailto:[EMAIL PROTECTED]]

> 3) Asking for the hierarchy of a class outside my project shows classes in
> my project that derive directly from that class (and classes that derive
> from those) but doesn't show classes in my project that derive through an
> intermediate class not in my project.

Do you think this would be consistent to show them as direct subclasses when
they are not?


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

Reply via email to