home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cadre Technologies Inc. 1995
- #
- # File: %W%
- # Author: Harm Leijendeckers
- # Description: Definition of class Report
- #
- #---------------------------------------------------------------------------
- # SccsId = %W% %G% Copyright 1995 Cadre Technologies Inc.
-
-
- Class Report : {GCObject} {
- constructor
-
- # public:
- # print methods
- method init
- method print
- method line
- method page
- method separator
- method space
- method file
-
- # header/footer methods
- method footer
- method header
- method remove
-
- # info methods
- method queued
-
- # attributes which can be used to print
- attribute pagelen
- attribute linelen
- attribute pageno
- attribute lineno
- attribute date
-
- # private:
- # header/footer methods
- method doHeader
- method doFooter
-
- # the ones that should not be used outside Report class
- attribute headerList
- attribute footerList
- attribute toPrint
- }
-