Method Abstract():initClass() Foundation
Method for class object initialization.
:initClass( [<paramList,...>] ) --> oClassObject
The method returns the class object of a class.
The class method :initClass() can optionally be declared within the class declaration (between the CLASS...ENDCLASS statements). When it is declared, it is executed immediately after the first call to the class function, as soon as the class object has been generated. It can be used to initialize class variables with default values and must be programmed separately. The arguments passed to the class function are passed to the method :initClass(). The class object can be referenced within the source code of :initClass()via the variable self.
If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.