Reputation: 5858
Is there a Netbeans Object Explorer equivalent of the Visual Studio Object Explorer? If not is there one in any of the Eclipse releases (i.e. Helios)?
Just a useful tool that I use a lot in Visual Studio and miss in Netbeans. I have to use the intellisense to look for classes from the code editor.
Screenshot of VS2008 Object Explorer:
Thanks
Andez
Upvotes: 1
Views: 1112
Reputation: 25380
Yes it is:
System.
will show you all methods / members of this class, including full javadoc of itctrl + left
mouse will open the full sourcecode of the file, additional it will be displayed at the Navigation Window (see above)Libraries
in the tree view shows you all libraries of you project, you now can browse through all your packages, classes, interfaces, methods, fields, ... as you much as you needHere's a goog screenshot from the internet: http://pliki.onet.pl/zdjecia/pliki/n/netbeans-cpp.jpg (showing C/C++)
Upvotes: 4