Ada Override and Overrideby Kinds

Kind Name
Entity Performing Reference
Entity Being Referenced
Ada Override
some_proc(x:other_type)
some_proc(x:some_type)
Ada Overrideby
some_proc(x:some_type)
some_proc(x:other_type)

Override and Overrideby references indicate that an operation subroutine (see Ada Operation and Operationfor Kinds), overrides another operation declared for the parent type.

package some_pack is 
   type some_type is tagged null record; 
   procedure some_proc(x : some_type); 
 
   type other_type is new some_type with null record; 
   procedure some_proc(x : other_type); 
end; 

Scientific Toolworks, Inc.
http://www.scitools.com