This image shows the Stored Procedures page again. It is identical to the previous Stored Procedure image except that now an 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;