RubyMine 2017.3 Help

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:

  1. With the class in question having the focus, invoke the Override method command in one of the following ways:
    • Press Ctrl+O.
    • On the main menu, choose Code | Override method.
    • Right-click the editor, choose Generate on the context menu, or press Alt+Insert, and choose Override methods.
  2. 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.
    rm overrideMethod
  3. Select one or more methods to override.
  4. Having generated the overriding method, create the required source code. Note the gutterIconOverriding 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.
    ruby overrideMethod1
Last modified: 4 April 2018

See Also