Try OpenEdge Now
skip to main content
Online Help
Introducing the ABL Editor : Tasks : Compiling, testing, and running ABL programs : Generating ABLDoc documentation : Adding comments : Adding comments to elements
 
Adding comments to elements
You can also add comments for elements in the ABL source code. Add the comment just above the declaration of the element in the following format:
/*------------------------------------------------------------------------------
Purpose:Picks up this comment
Notes:
@param this is an integer param
@return
------------------------------------------------------------------------------*/

METHOD PUBLIC VOID main( a as int ):
RETURN.

END METHOD.