Problems with the Code Explorer window for Java.

1) Variables defined inside methods are shown at the same hierarchy as the
method. For example:

class abc {
        abc() {
    }
    
    void def() {
        String s = "s";
        int i = 1;
    }
}

The above code shows in the Code Explorer as:

- [UndocumentedIcon] abc
  |_ [methodIcon] def()
  |_ [BlockIcon] i = 1

But it should be

- [ClassIcon] abc
  |_ [methodIcon] abc()
  |_ [methodIcon] def()
    |_ [BlockIcon] s =
    |_ [BlockIcon] i = 1

4)The CodeExplorer thinks Class is the same as class.

class a {
    a() {
    }
    private Class b() {
    }
}

is displayed as

_ [?] a
_ [?] z()

should be

_ [ClassIcon] abc
  |_ [methodIcon] z()

Thanks.

PS.  It seems that the spacing of my text is getting lost.  So it may be hard to
understand what I am getting at.  I checked the forum software's
website(Phorum.org). They say the problem is HTML.  That seems wrong to me.

-- 
<http://forum.pspad.com/read.php?4,41767,41767>
PSPad freeware editor http://www.pspad.com

Odpovedet emailem