plsqldoc {*} problem

Jenean

Member
My documentation look like this
/**
Object for procedure parameters.

%author Jenean Spencer, 10/9/2007 4:50:37 PM

%attribute Procedure_Parameter_Id - Procedure parameter id.
%attribute Procedure_Id - Procedure id.
%attribute Position - Position of the parameter in the parameter list.
%attribute Parameter_Type - Parameter type.
{*}'IN'
{*} 'IN_OUT'
{*} 'OUT'
%attribute Parameter - Parameter name.
%attribute Data_Type - Data type.
%attribute Action - Defines what if any action should be associated with the
object.
{*} - 'INSERT'
{*} 'UPDATE'
{*} 'DELETE'

**/
However when I generate my documentation the {*} bullet values are missing.

Type CIS_Procedure_Parameter_Obj

Object for procedure parameters.

Author
Jenean Spencer, 10/9/2007 4:50:37 PM

Attributes
Procedure_Parameter_Id - Procedure parameter id.
Procedure_Id - Procedure id.
Position - Position of the parameter in the parameter list.
Parameter_Type - Parameter type.
Parameter - Parameter name.
Data_Type - Data type.
Action - Defines what if any action should be associated with the object.

What am I doing wrong?

Any help would be appreciated.
 
/**
Object for procedure parameters.

%author Jenean Spencer, 10/9/2007 4:50:37 PM
%attribute Procedure_Parameter_Id - Procedure parameter id.
%attribute Procedure_Id - Procedure id.
%attribute Position - Position of the parameter in the parameter list.
%attribute Parameter_Type - Parameter type
Valid values:
{*} IN
{*} IN_OUT
{*} OUT
%attribute Parameter - Parameter name.
%attribute Data_Type - Data type.
%attribute Action - Defines what if any action should be associated with the
object.
Valid values:
{*} INSERT
{*} UPDATE
{*} DELETE
**/

The generated documentation looks like:

Type CIS_Procedure_Parameter_Obj

Object for procedure parameters.

Author
Jenean Spencer, 10/9/2007 4:50:37 PM

Attributes
Procedure_Parameter_Id - Procedure parameter id.
Procedure_Id - Procedure id.
Position - Position of the parameter in the parameter list.
Parameter_Type - Parameter type Valid values:
IN
IN_OUT
OUT

Parameter - Parameter name.
Data_Type - Data type.
Action - Defines what if any action should be associated with the object.

Notice the {*} bullet values are displayed only if the they are not preceed by ".". Is this how they are supposed to work? Or is this a bug?

Thanks for you help.
 
Back
Top