Overriding Methods of a Superclass
Overview
You can override any method of a parent class, using the code generation facility. RubyMine creates a stub that contains a call to the method of the superclass, leaving the developer with the task of providing some meaningful source code.
Overriding methods
To override methods, follow these steps:
- With the class in question having the focus, invoke the command in one of the following ways:
- Select methods that can be overridden from the Select methods to override dialog box. The list of methods does not include the methods that are already overridden, or cannot be accessed from the current subclass.
- Select one or more methods to override.
- Having generated the overriding method, create the required source code. Note the
icon that marks the overriding method in the left gutter. Use this icon to view the name of the base class, and navigate to the overridden method.
Changing method body
File template responsible for overriding a method (Overridden method body) accepts predefined template variables from "File Header" ( ), e.g. ${USER}
, ${DATE}
, etc.
For example, consider the following file template:
Last modified: 26 October 2017