Add comments to elements
- Last Updated: February 11, 2026
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
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.