This image shows the Stored Procedures dialog box again. It is the same as the previous Stored Procedure image except that the now one of the OVERLOAD procedures is selected and the Source tab is shown. The Source filed 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;