Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open Implementation (type hierarchy) functionality in NetBeans?

When I have Java code like this:

someInterface.someMethod();

how do I get Netbeans to show me which classes have implementations of someMethod() (not the interface).

In Eclipse this is done with Ctrl+T, but pressing Ctrl+T on the method did nothing in Netbeans 6.5 and I can't where the type hierarchy functionality is in Netbeans 6.5.

Thanks.

like image 685
Dean Schulze Avatar asked Aug 27 '09 17:08

Dean Schulze


People also ask

How do I open Jframe properties in NetBeans?

In the Projects window, right-click the System Properties project and choose Properties.

How do I open a project bar in NetBeans?

The user will be able to open the project into a NetBeans Platform application. The user will also be able to create new projects, via the New Projects window (Ctrl-Shift-N), which is where we will register some sample projects.

How can I see compiled code in NetBeans?

On the main NetBeans menu, choose Build → Build Main Project. The output window shows a successful compilation. If the compilation isn't successful, make changes to the code in the editor window, and try compiling again.

How to Format code in NetBeans mac?

To format all the code in NetBeans, press Alt + Shift + F. If you want to indent lines, select the lines and press Alt + Shift + right arrow key, and to unindent, press Alt + Shift + left arrow key.


1 Answers

I find that Ctrl+Alt+B works perfectly. :)

like image 170
jonasespelita Avatar answered Nov 22 '22 17:11

jonasespelita