This image shows the Stored Procedures page again. It is the same as the previous Stored Procedure image except that now one of the OVERLOAD procedures is selected and the Source tab is shown. The Source field contains the following code snippet:

package body package as
     procedure overload (x number) as
     begin
          null;
     end;
     procedure overload (x number, y varchar2)
     begin
          null;
     end;
end;