Rakesh KR
Rakesh KR

Reputation: 6527

Shortcut for jumping from one method to another method in Eclipse

I have a class which consist of somany methods, I want to move from one method to another. Is there any shortcut for that ? I am using Eclipse(INDIGO).

--> void method1(){

    }
--> void method2(){

    }   
       .
       .
       .

--> void methodn(){

    }

I need to go like above.

Upvotes: 2

Views: 1743

Answers (2)

René Link
René Link

Reputation: 51353

Use Ctrl + Shift + Cursor Up/Down.

Upvotes: 5

Andres
Andres

Reputation: 10717

Use the Outline view: Window/Show View/Outline

Upvotes: 2

Related Questions