Smalltalk Java Column Class Browser

I would like to develop in Java on Eclipse with the same browser of the "five panels" class as in Smalltalk. Is there an eclipse plugin that does this? I can not find him.

Something like package names of the 1st column, 2nd column of the Class name, method names of the 3rd column and, finally, the bottom panel for editing methods.

Thanks so much for your answers.

+4
source share
3 answers

You can organize the categories “packages”, “types” and “members” of the category “Java Browsing” to have the same layout.

The main difference is that you can use the scroll bar to see other members without going into the members view (I'm not sure what he did in Smalltalk V or 80 ... it's so deprecated ...).

I have a very similar layout, as “projects”, “packages” and “types” are displayed in the column to the left of my screen (there is no space for “members” on my small screen).

+2
source

The plugin is not needed: choose Window> Open Perspective ...> View Java, and you will get something very similar to the original Smalltalk browser. The similarity of this perspective of the review is probably due to the origin of the Eclipse IDE: IBM Visual Age for Java / Smalltalk.

+4
source

All Articles