somDumpSelf

From EDM2
Revision as of 19:19, 16 June 2018 by Ak120 (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This method writes out a detailed description of the receiving object. Intended for use by object clients. Not generally overridden. Note: For backward compatibility, this method does not take and Environment parameter.

Original Class 
SOMObject

Syntax

void somDumpSelf (SOMObject receiver, long level)

Parameters

receiver (SOMObject)
A pointer to the object to be dumped.
level (long)
The nesting level for describing compound objects. It must be greater than or equal to 0. All lines in the description will be preceded by "2 * level" spaces.

Return Code

rc (void)

Remarks

The somDumpSelf method performs some initial setup, and then invokes the somDumpSelfInt method to write a detailed description of the receiver, including its state.

Related

Methods