Say I have:
public class A extends B {
/* autocompletion doesn't suggests protected methods from B to
override with Ctrl+SPACE
*/
}
I’m currently using Intellij IDEA 11.0.2.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Right click in your editor pane for class
A, go to ‘Generate…’ -> ‘Override Methods…’.You’ll then be presented with a list of all methods that can be overridden.
‘Generate…’ can also be called up via keyboard shortcuts, I’m on a Mac currently and it’s
^N. IIRC the shortcut on Windows/Linux is Alt-Insert.