A system reference that lets a subclass call the PUBLIC and PROTECTED instance methods of its super class in the inherited class hierarchy. If the specified method definition is not found in the subclass's immediate super class, ABL repeatedly looks to the next super class in the inherited class hierarchy until it finds the definition.
Specifies the name of an instance method defined in a super class. The method definition cannot be abstract or ABL raises a compiler error.
Specifies zero or more parameters passed to a PROTECTED or PUBLIC method that is defined for the super class. You must provide the parameters identified by the specified method, matched with respect to number, data type, and mode. To invoke a method that is overloaded in the class, you must specify sufficient information for each parameter in order to disambiguate it from all the other methods that it overloads. Otherwise, ABL raises an error identifying the ambiguity.
For information on the parameter passing syntax and disambiguating overloaded methods, see the Parameter passing syntax reference entry.