Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I think some shortcut to create a method stub in eclipse might be useful. Does anyone know how to do it?

share|improve this question
1  
Another way to create a method stub is through Ctrl+1 option. – Abhijeet Kashnia Mar 26 '10 at 14:00

2 Answers

up vote 4 down vote accepted

Type public_method (see Java/Editor/Templates in preferences for more options) or method name and press ctrl+space.

share|improve this answer
Thanks, and would you by any chance know of other shortcuts that could be helpful when trying TDD? – Abhijeet Kashnia Mar 26 '10 at 10:42
Nope. I do not have a project where I can try TDD because they have custom UI components, run inside large framework, use heuristic, numerical or impossible-to-calculate-by-hand algorithms what makes them impossible to test. – Ha. Mar 26 '10 at 11:34
by typing method name and press ctrl+space, how can we change the default method code from private to public? – hetaoblog Aug 9 '12 at 8:56

Type your method name and hit Ctrl + Space.

Also worth noting is, type 'test' and hit Ctrl + Space and it will give you the option to create a test method stub.

share|improve this answer
Thanks, that was useful. – Abhijeet Kashnia Mar 26 '10 at 10:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.