SomDumpSelf: Difference between revisions
Appearance
Created page with "{{DISPLAYTITLE:somDumpSelf}} This method writes out a detailed description of the receiving object. Intended for use by object clients. Not generally overridden. Note: For bac..." |
mNo edit summary |
||
(2 intermediate revisions by one other user not shown) | |||
Line 2: | Line 2: | ||
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. | 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 : [[ | ;Original Class : [[SOMObject]] | ||
==Syntax== | ==Syntax== | ||
void somDumpSelf (SOMObject receiver, long level) | void somDumpSelf (SOMObject receiver, long level) | ||
==Parameters== | ==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. | |||
; 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== | ==Return Code== | ||
Line 16: | Line 16: | ||
==Remarks== | ==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. | 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== | ==Related== | ||
Line 25: | Line 21: | ||
* [[somDumpSelfInt]] | * [[somDumpSelfInt]] | ||
[[Category: | [[Category:SOMObject]] |
Latest revision as of 21:19, 16 June 2018
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.