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 a file
 
Adding comments to a file
You can also add comments to a file in the ABL source code by adding comments to the Purpose section in the following format:
/*------------------------------------------------------------------------
File : GenericDataExporter
Purpose :
Syntax :
Description :
Author(s) : abc
Created : Tue Nov 19 21:16:10 CET 2013
Notes :
----------------------------------------------------------------------*/

USING Progress.Lang.*.

BLOCK-LEVEL ON ERROR UNDO, THROW.

CLASS com.ClassA:
END CLASS.