I have package bodies like:
package body blah
as
procedure foo
is
procedure minifoo
is
begin
null;
end minifoo;
procedure minifoo2
is
begin
null;
end minifoo2;
begin
null;
end foo;
end blah;
PLSQLDOC will document the blah package and the foo procedure, but doesn't document the encapsulated minifoo's - is this by design?
package body blah
as
procedure foo
is
procedure minifoo
is
begin
null;
end minifoo;
procedure minifoo2
is
begin
null;
end minifoo2;
begin
null;
end foo;
end blah;
PLSQLDOC will document the blah package and the foo procedure, but doesn't document the encapsulated minifoo's - is this by design?