PLSQLDOC - encapculated procedure documentation

andyh

Member²
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?
 
Yes, subprograms within subprograms are not documented. They are treated as internal code within the first subprogram, because it cannot be used outside that subprogram.
 
Back
Top